X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=f7ea3b11c61d3098fd03e85dbb5c36887786819e;hp=38160edd339acda845dbb40a40b5d3c15eaeca2c;hb=df701650ca9a83709e81e75c423ac3cc882cb246;hpb=04218c0c1af88835d1d2e68d97c6e644b7afae35 diff --git a/swank.R b/swank.R index 38160ed..f7ea3b1 100644 --- a/swank.R +++ b/swank.R @@ -381,6 +381,25 @@ helpFilesWithTopicString <- function(value) { helpFilesWithTopicString(value) } +`swank:apropos-list-for-emacs` <- function(slimeConnection, sldbState, name, onlyExternal, package, caseSensitive) { + x <- help.search(name, fields="alias", package=.packages())$matches + brieflyDescribe <- function(name, title) { + if (exists(name, globalenv())) { + val <- get(name, globalenv()) + kind <- if("function" %in% class(val)) quote(`:function`) else quote(`:variable`) + list(quote(`:designator`), name, kind, title) + } else { + ## maybe + list(quote(`:designator`), name, quote(`:type`), title) + } + } + mapply(brieflyDescribe, x[,"name"], x[,"title"], SIMPLIFY=FALSE) +} + +`swank:describe-definition-for-emacs` <- function(slimeConnection, sldbState, name, kind) { + `swank:describe-symbol`(slimeConnection, sldbState, name, NULL) +} + `swank:throw-to-toplevel` <- function(slimeConnection, sldbState) { condition <- simpleCondition("Throw to toplevel") class(condition) <- c("swankTopLevel", class(condition))