* RESOLVED #8 startup is not filesystem-location independent :MINOR:FIXED:
Requires the cwd to be the swankr directory to be able to find
swank-presentations and swank-media
-* OPEN #9 help and ? to produce help buffers :WISHLIST:
+* RESOLVED #9 help and ? to produce help buffers :WISHLIST:FIXED:
Not like ESS, though: that works by looking at the user's input with
a regexp. Use slime-media?
* RESOLVED #10 0 or more than 1 exprs at REPL :MINOR:FIXED:
makeMediaReplResult.default(value)
}
+makeMediaReplResult.help_files_with_topic <- function(value) {
+ output <- capture.output(tools:::Rd2txt(utils:::.getHelpFile(value),
+ options=list(underline_titles=FALSE)))
+ string <- paste(output, collapse="\n")
+ list(quote(`:popup-buffer`), sprintf("*slime-help(%s)*", attr(value, "topic")),
+ string, quote(`ess-help-mode`))
+}
+
makeReplResultFunction <- makeMediaReplResult