(eval-when-compile
(require 'reporter)
(require 'ess-inf)
(require 'info))
(require 'ess)
(autoload 'ess-eval-region "ess-inf" "[autoload]" t)
(autoload 'ess-eval-region-and-go "ess-inf" "[autoload]" t)
(autoload 'ess-eval-function "ess-inf" "[autoload]" t)
(autoload 'ess-eval-function-and-go "ess-inf" "[autoload]" t)
(autoload 'ess-eval-line "ess-inf" "[autoload]" t)
(autoload 'ess-eval-line-and-go "ess-inf" "[autoload]" t)
(autoload 'ess-eval-line-and-step "ess-inf" "[autoload]" t)
(autoload 'ess-with-current-buffer "ess-inf" "[autoload]" t)
(autoload 'ess-goto-beginning-of-function-or-para "ess-mode" "[autoload]" t)
(autoload 'ess-goto-end-of-function-or-para "ess-mode" "[autoload]" t)
(autoload 'ess-load-file "ess-inf" "[autoload]" t)
(autoload 'ess-command "ess-inf" "(autoload)" nil)
(autoload 'ess-display-temp-buffer "ess-inf" "(autoload)" nil)
(autoload 'ess-switch-to-ESS "ess-inf" "(autoload)" nil)
(autoload 'ess-read-object-name-default "ess-inf" "(autoload)" nil)
(autoload 'ess-make-buffer-current "ess-inf" "(autoload)" nil)
(autoload 'ess-search-list "ess-inf" "(autoload)" nil)
(autoload 'ess-get-object-list "ess-inf" "(autoload)" nil)
(autoload 'ess-ddeclient-p "ess-inf" "(autoload)" nil)
(autoload 'ess-display-help-on-object-ddeclient "ess-dde" "(autoload)" nil)
(autoload 'tramp-tramp-file-p "tramp" "(autoload).")
(autoload 'tramp-file-name-localname "tramp" "(autoload).")
(autoload 'tramp-dissect-file-name "tramp" "(autoload).")
(autoload 'with-parsed-tramp-file-name "tramp" "(autolaod).")
(defun ess--help-get-bogus-buffer-substring (buffer &optional nr-first)
"Return non-nil if BUFFER looks like a bogus ESS help buffer.
Return the pair (match-beg. match-end) which can be used in error message.
NR-FIRST is the number of characters at the start of the buffer
to examine when deciding if the buffer if bogus. If nil, the
first 150 characters of the buffer are searched."
(if (not nr-first) (setq nr-first 150))
(with-current-buffer buffer
(let ((PM (point-min))
(case-fold-search t)
searching res)
(setq res
(or
(< (- (point-max) PM) 80)
(not (setq searching t))
(progn (goto-char PM)
(re-search-forward "Error in help" nr-first t))
(progn (goto-char PM)
(re-search-forward "^cat: .*--" nr-first t))
(progn (goto-char PM)
(re-search-forward "no documentation .+" nr-first t))
(progn (goto-char PM)
(re-search-forward "^help .*not found" nr-first t))
))
(ess-write-to-dribble-buffer
(format " |--> %s [searching %s]\n" res searching))
(when res
(if searching
(buffer-substring (match-beginning 0) (match-end 0))
(buffer-string))))))
(defvar ess-help-type nil
"Type of help file, help, index, vingettes etc.
Local in ess-help buffers.")
(make-variable-buffer-local 'ess-help-type)
(defvar ess-help-object nil
"Name of the object the help is displayed for.
Is name of the package for package index.
Local in ess-help buffers.")
(make-variable-buffer-local 'ess-help-object)
(defun ess-display-help-on-object (object &optional command)
"Display documentation for OBJECT in another window.
If prefix arg is given, force an update of the cached help topics
and query the ESS process for the help file instead of reusing an
existing buffer if it exists. Uses the variable
`inferior-ess-help-command' for the actual help command. Prompts
for the object name based on the cursor location for all cases
except the S-Plus GUI. With S-Plus on Windows (both GUI and in
an inferior emacs buffer) the GUI help window is used.
If COMMAND is suplied, it is used instead of `inferior-ess-help-command'.
"
(interactive
(progn
(ess-force-buffer-current)
(when current-prefix-arg
(ess-process-put 'sp-for-help-changed? t))
(if (ess-ddeclient-p)
(list (read-string "Help on: "))
(list (ess-find-help-file "Help on")))))
(if (or (ess-ddeclient-p)
(equal inferior-ess-help-filetype "chm"))
(if (ess-ddeclient-p)
(ess-display-help-on-object-ddeclient object)
(ess-eval-linewise (concat "help(" object ")")))
(let* ((hb-name (concat "*help["
ess-current-process-name
"](" (replace-regexp-in-string "^\\?\\|`" "" object) ")*"))
(old-hb-p (get-buffer hb-name))
(tbuffer (get-buffer-create hb-name)))
(when (or (not old-hb-p)
current-prefix-arg
(ess--help-get-bogus-buffer-substring old-hb-p))
(ess-with-current-buffer tbuffer
(setq ess-help-object object
ess-help-type 'help)
(ess--flush-help-into-current-buffer object command)))
(unless (ess--help-kill-bogus-buffer-maybe tbuffer)
(ess--switch-to-help-buffer tbuffer)))))
(defun ess--flush-help-into-current-buffer (object &optional command dont-ask)
(ess-write-to-dribble-buffer
(format "(ess-help '%s' start ..\n" (buffer-name (current-buffer))))
(if buffer-read-only (setq buffer-read-only nil))
(delete-region (point-min) (point-max))
(ess-help-mode)
(when (and (null command)
(string-match "^R" ess-dialect))
(let ((packs (ess-get-words-from-vector
(format "as.character(help('%s'))\n" object))))
(when (> (length packs) 1)
(setq
command (format
"do.call(structure, c('%s', attributes(help('%s'))))\n"
(if dont-ask
(car packs)
(ess-completing-read "Choose location" packs nil t))
object)))))
(ess-command (format (or command inferior-ess-help-command)
object) (current-buffer))
(ess-help-underline)
(unless (string= ess-language "STA")
(ess-nuke-help-bs))
(goto-char (point-min))
(set-buffer-modified-p 'nil)
(setq buffer-read-only t)
(setq truncate-lines nil))
(defun ess--help-kill-bogus-buffer-maybe (buffer)
"Internal, try to kill bogus buffer with message. Return t if killed."
(when ess-help-kill-bogus-buffers
(let ((bog-mes (ess--help-get-bogus-buffer-substring buffer)))
(when bog-mes
(when (< (length bog-mes) 10)
(setq bog-mes (format "No documentation found; %s" bog-mes)))
(ess-write-to-dribble-buffer
(format "(ess-help: kill bogus buffer %s ..\n" (buffer-name buffer)))
(message "%s" (replace-regexp-in-string "\n" "" bog-mes))
(kill-buffer buffer)))))
(defun ess-display-help-in-browser ()
"Displaying html help where available, using \\[browse-url]."
(interactive)
(let (com-html-help
com-get-file-path
fun-get-file-path
not-implemented
)
(cond
((string-match "^R" ess-dialect)
(setq com-html-help "help('%s', help_type='html')\n"))
(t (setq not-implemented t))
)
(if not-implemented
(message "Sorry, not implemented for %s " ess-dialect)
(if (or (not ess-help-object)
(not (eq ess-help-type 'help)))
(message "No help topic found")
(if com-html-help
(ess-command (format com-html-help ess-help-object))
(require 'browse-url)
(if com-get-file-path
(browse-url (car (ess-get-words-from-vector (format com-get-file-path ess-help-object))))
(when (functionp fun-get-file-path)
(browse-url (funcall fun-get-file-path ess-help-object))))))
)))
(defun ess--action-help-on-object (&optional button)
"Provide help on object at the beginning of line.
It's intended to be used in R-index help pages. Load the package
if necessary. It is bound to RET and C-m in R-index pages."
(interactive)
(let* ((string (button-label button))
(command
(when (equal ess-dialect "R")
(cond ((string-match"::" string)
(format "?%s\n" (ess-R--sanitize-help-topic string)))
((eq ess-help-type 'index)
(concat "?" ess-help-object "::`%s`\n"))
))))
(ess-display-help-on-object string command)
))
(defun ess-display-package-index ()
"Prompt for package name and display its index."
(interactive)
(let ((object (buffer-name))
(alist ess-local-customize-alist)
(pname ess-local-process-name)
pack buff all-packs not-implemented
com-package-for-object
com-packages
com-package-index
reg-keyword
reg-start
)
(cond
((string-match "^R" ess-dialect)
(setq com-package-for-object "sub('package:', '', .ess.findFUN('%s'))\n"
com-packages ".packages(all.available=TRUE)\n"
com-package-index ".ess.help(package='%s', help.type='text')\n"
reg-keyword "^\\([-a-zA-Z0-9._@$]+\\)[^:\n]*$"
reg-start "^Index:"))
((string-match "julia" ess-dialect)
(setq com-packages "_ess_list_categories()\n"
com-package-index "_ess_print_index(\"%s\")\n"
reg-keyword "^\\(.*+\\):$*"
reg-start ":"
))
(t (error "Sorry, not implemented for %s " ess-dialect)))
(when (and com-package-for-object
ess-help-object
(eq ess-help-type 'help))
(setq pack (car (ess-get-words-from-vector
(format com-package-for-object ess-help-object)))))
(setq all-packs (ess-get-words-from-vector com-packages))
(unless pack
(setq pack (car (member (ess-read-object-name-default) all-packs))))
(setq pack (ess-completing-read "Index of"
all-packs nil nil nil nil pack))
(ess--display-indexed-help-page
(format com-package-index pack)
reg-keyword
(format "*help[%s](index:%s)*" ess-dialect pack)
'index nil nil reg-start pack)
))
(defalias 'ess-display-index 'ess-display-package-index)
(make-obsolete 'ess-display-index 'ess-display-package-index "ESS[12.09]")
(defun ess--display-indexed-help-page (command item-regexp title help-type
&optional action help-echo reg-start help-object)
"Internal function to display help pages with linked actions
;; COMMAND to produce the indexed help page
;; ITEM-REGEXP -- first subexpression is highlighted
;; TITLE of the help page
;; HELP-TYPE to be stored in `ess-help-type' local variable
;; ACTION is a function with no argument (default is `ess--action-help-on-object')
;; HELP-ECHO
;; REG-START gives the start location from where to search linkifying"
(interactive)
(let ((object (buffer-name))
(alist ess-local-customize-alist)
(pname ess-local-process-name)
(buff (get-buffer-create title))
)
(with-current-buffer buff
(setq ess-help-object help-object)
(ess-setq-vars-local (eval alist))
(setq ess-help-sec-regex "\\(^\\s-.*\n\\)\\|\\(^\n\\)"
ess-local-process-name pname)
(setq buffer-read-only nil)
(delete-region (point-min) (point-max))
(ess-help-mode)
(ess-command command buff)
(ess-help-underline)
(set-buffer-modified-p 'nil)
(goto-char (point-min))
(when reg-start
(re-search-forward reg-start nil t))
(when (and item-regexp (featurep 'emacs))
(save-excursion
(while (re-search-forward item-regexp nil t)
(make-text-button (match-beginning 1) (match-end 1)
'mouse-face 'highlight
'action (or action #'ess--action-help-on-object)
'help-object (buffer-substring-no-properties (match-beginning 1) (match-end 1))
'follow-link t
'help-echo (or help-echo "help on object")))
))
(setq buffer-read-only t)
(setq ess-help-type help-type)
(setq truncate-lines nil)
)
(unless (ess--help-kill-bogus-buffer-maybe buff)
(ess--switch-to-help-buffer buff))
))
(defun ess-display-help-apropos (&optional pattern)
"Create an ess-apropos buffer with a *linked* list of apropos topics."
(interactive "sPattern: ")
(let (com regexp)
(cond ((equal ess-dialect "R")
(setq com "help.search('%s')\n"
regexp "^\\([^ \t\n:]+::[^ \t\n:]+\\)[ \t\n]+"))
((equal ess-dialect "julia")
(setq com "apropos(\"%s\")\n"
regexp "^\\(\\(\\w\\|\\s_\\)+\\)("))
(t (error "Not implemented for dialect %s" ess-dialect)))
(ess--display-indexed-help-page
(format com pattern) regexp
(format "*ess-apropos[%s](%s)*" ess-current-process-name pattern)
'appropos)))
(defun ess-display-demos ()
"Create an ess-demos buffer with a *linked* list of available demos."
(interactive)
(let (com regexp)
(cond ((equal ess-dialect "R")
(setq com "demo()\n"
regexp "^\\([^ \n:]+\\) +"))
(t (error "Not implemented for dialect %s" ess-dialect)))
(ess--display-indexed-help-page
com regexp
(format "*ess-demos[%s]*" ess-current-process-name)
'demos #'ess--action-demo)))
(defun ess--action-demo (&optional button)
"Provide help on object at the beginning of line.
It's intended to be used in R-index help pages. Load the package
if necessary. It is bound to RET and C-m in R-index pages."
(interactive)
(let* ((string (button-label button))
(command
(cond ((equal ess-dialect "R")
(format "demo('%s')\n" string))
(t (error "Not implemented for dialect %s" ess-dialect)))))
(ess-eval-linewise command)
(ess-switch-to-end-of-ESS)))
(defun ess-display-vignettes ()
"Display vignettes if available for the current dialect."
(interactive)
(cond
((string-match "^R" ess-dialect) (ess-R-display-vignettes))
(t (message "Sorry, not implemented for %s" ess-dialect))))
(defun ess-R-display-vignettes ()
"Display R vignettes in ess-help-like buffer."
(interactive)
(let* ((vslist (with-current-buffer (ess-command ".ess_vignettes()\n")
(goto-char (point-min))
(when (re-search-forward "(list" nil t)
(goto-char (match-beginning 0))
(ignore-errors (eval (read (current-buffer)))))))
(proc-name ess-current-process-name)
(alist ess-local-customize-alist)
(remote (file-remote-p default-directory))
(buff (get-buffer-create (format "*[%s]vignettes*" ess-dialect))))
(with-current-buffer buff
(setq buffer-read-only nil)
(delete-region (point-min) (point-max))
(ess-setq-vars-local (eval alist))
(setq ess-help-sec-regex "^\\w+:$"
ess-help-type 'vignettes
ess-local-process-name proc-name)
(ess-help-mode)
(set-buffer-modified-p 'nil)
(goto-char (point-min))
(dolist (el vslist)
(let ((pack (car el)))
(insert (format "\n\n%s:\n\n" (propertize pack 'face 'underline)))
(dolist (el2 (cdr el))
(let ((path (if remote
(with-parsed-tramp-file-name default-directory nil
(tramp-make-tramp-file-name method user host (nth 1 el2)))
(nth 1 el2))))
(insert-text-button "Pdf"
'mouse-face 'highlight
'action (if remote
#'ess--action-open-in-emacs
#'ess--action-R-open-vignette)
'follow-link t
'vignette (file-name-sans-extension (nth 2 el2))
'package pack
'help-echo (concat path "/doc/" (nth 2 el2)))
(insert " ")
(insert-text-button "Rnw"
'mouse-face 'highlight
'action #'ess--action-open-in-emacs
'follow-link t
'help-echo (concat path "/doc/" (nth 3 el2)))
(insert " ")
(insert-text-button "R"
'mouse-face 'highlight
'action #'ess--action-open-in-emacs
'follow-link t
'help-echo (concat path "/doc/" (nth 4 el2)))
(insert (format "\t%s\n" (nth 0 el2)))
))))
(goto-char (point-min))
(insert (propertize "\t\t**** Vignettes ****\n" 'face 'bold-italic))
(unless (eobp) (delete-char 1))
(setq buffer-read-only t))
(ess--switch-to-help-buffer buff)
))
(defun ess--action-open-in-emacs (pos)
(display-buffer (find-file-noselect (get-text-property pos 'help-echo))))
(defun ess--action-R-open-vignette (pos)
(ess-command (format "vignette('%s', package='%s')\n"
(get-text-property pos 'vignette)
(get-text-property pos 'package))))
(defun ess-help-quit (&optional kill)
"Quit help."
(interactive "P")
(let* ((buffer (window-buffer))
(obuffer (other-buffer buffer t)))
(bury-buffer)
(pop-to-buffer obuffer)
(if kill
(kill-buffer buffer))))
(defun ess-help-kill ()
"Quit and kill the help buffer"
(interactive)
(ess-help-quit t))
(defun ess--find-displayed-help-window ()
(catch 'win
(dolist (f (frame-list))
(when (frame-visible-p f)
(dolist (w (window-list f))
(when (eq (buffer-local-value 'major-mode (window-buffer w))
'ess-help-mode)
(throw 'win w)))))))
(defun ess--switch-to-help-buffer (buff &optional curr-major-mode)
"Switch to help buffer and take into account `ess-help-own-frame'.
For internal use. Used in `ess-display-help-on-object',
`ess-display-package-index', and `ess-display-vignettes'.
CURR-MAJOR-MODE default to current major mode.
"
(setq curr-major-mode (or curr-major-mode major-mode))
(let ((special-display-regexps (if ess-help-own-frame '(".") nil))
(special-display-frame-alist ess-help-frame-alist)
(special-display-function (if (eq ess-help-own-frame 'one)
'ess-help-own-frame
special-display-function))
(help-win (or (and (eq curr-major-mode 'ess-help-mode)
(selected-window))
(and ess-help-reuse-window
(ess--find-displayed-help-window)))))
(if help-win
(progn
(select-window help-win 'norecord)
(set-window-buffer help-win buff)
)
(if ess-help-pop-to-buffer
(pop-to-buffer buff)
(ess-display-temp-buffer buff)))))
(defvar ess-help-frame nil
"Stores the frame used for displaying R help buffers.")
(defun ess-help-own-frame (buffer &rest ignore)
"Put all ESS help buffers into `ess-help-frame'."
(if (frame-live-p ess-help-frame)
(progn
(or (frame-visible-p ess-help-frame)
(make-frame-visible ess-help-frame))
(raise-frame ess-help-frame)
(select-frame ess-help-frame)
(switch-to-buffer buffer)
(selected-window))
(let ((window (special-display-popup-frame buffer)))
(set-window-dedicated-p window nil)
(setq ess-help-frame (window-frame window))
window)))
(defun ess-help-web-search ()
"Search the web for documentation"
(interactive)
(ess-execute-dialect-specific ess-help-web-search-command "Search for: "))
(defun ess-manual-lookup ()
"Search manual for topic"
(interactive)
(ess-execute-dialect-specific ess-manual-lookup-command ))
(defun ess-reference-lookup ()
"Search manual for topic"
(interactive)
(ess-execute-dialect-specific ess-reference-lookup-command))
(defvar ess-help-sec-map nil "Sub-keymap for ESS help mode.")
(defvar ess-doc-map
(let (ess-doc-map)
(define-prefix-command 'ess-doc-map)
(define-key ess-doc-map "\C-e" 'ess-describe-object-at-point)
(define-key ess-doc-map "e" 'ess-describe-object-at-point)
(define-key ess-doc-map "\C-d" 'ess-display-help-on-object)
(define-key ess-doc-map "d" 'ess-display-help-on-object)
(define-key ess-doc-map "\C-i" 'ess-display-package-index)
(define-key ess-doc-map "i" 'ess-display-package-index)
(define-key ess-doc-map "\C-a" 'ess-display-help-apropos)
(define-key ess-doc-map "a" 'ess-display-help-apropos)
(define-key ess-doc-map "\C-v" 'ess-display-vignettes)
(define-key ess-doc-map "v" 'ess-display-vignettes)
(define-key ess-doc-map "\C-o" 'ess-display-demos)
(define-key ess-doc-map "o" 'ess-display-demos)
(define-key ess-doc-map "\C-w" 'ess-help-web-search)
(define-key ess-doc-map "w" 'ess-help-web-search)
(define-key ess-doc-map "\C-m" 'ess-manual-lookup)
(define-key ess-doc-map "m" 'ess-manual-lookup)
(define-key ess-doc-map "\C-r" 'ess-reference-lookup)
(define-key ess-doc-map "r" 'ess-reference-lookup)
ess-doc-map
)
"ESS documentation map.")
(defvar ess-help-mode-map
(let ((map (make-keymap)))
(suppress-keymap map)
(when (boundp 'special-mode-map)
(set-keymap-parent map special-mode-map))
(define-key map "q" 'ess-help-quit)
(define-key map "\C-m" 'next-line)
(define-key map "h" 'ess-display-help-on-object)
(define-key map "w" 'ess-display-help-in-browser)
(define-key map "i" 'ess-display-package-index)
(define-key map "a" 'ess-display-help-apropos)
(define-key map "v" 'ess-display-vignettes)
(define-key map "l" 'ess-eval-line-and-step)
(define-key map "r" 'ess-eval-region-and-go)
(define-key map "f" 'ess-eval-function-or-paragraph-and-step)
(define-key map "n" 'ess-skip-to-next-section)
(define-key map "p" 'ess-skip-to-previous-section)
(define-key map "/" 'isearch-forward)
(define-key map "x" 'ess-kill-buffer-and-go)
(define-key map "k" 'kill-this-buffer)
(define-key map "?" 'ess-describe-help-mode)
(define-key map "\C-ch" 'ess-handy-commands)
(define-key map "\C-c\C-s" 'ess-switch-process)
(define-key map "\C-c\C-r" 'ess-eval-region)
(define-key map "\C-c\M-r" 'ess-eval-region-and-go)
(define-key map "\C-c\C-f" 'ess-eval-function)
(define-key map "\M-\C-x" 'ess-eval-function)
(define-key map "\C-c\M-f" 'ess-eval-function-and-go)
(define-key map "\C-c\C-j" 'ess-eval-line)
(define-key map "\C-c\C-n" 'ess-eval-line-and-step)
(define-key map "\C-c\C-c" 'ess-eval-region-or-function-or-paragraph-and-step)
(define-key map [(control return)] 'ess-eval-region-or-line-and-step)
(define-key map "\C-c\M-j" 'ess-eval-line-and-go)
(define-key map "\M-\C-a" 'ess-goto-beginning-of-function-or-para)
(define-key map "\M-\C-e" 'ess-goto-end-of-function-or-para)
(define-key map "\C-c\C-y" 'ess-switch-to-ESS)
(define-key map "\C-c\C-z" 'ess-switch-to-end-of-ESS)
(define-key map "\C-c\C-l" 'ess-load-file)
(define-key map "\C-c\M-l" 'ess-load-file)
(define-key map "\C-c\C-v" 'ess-display-help-on-object)
(define-key map "\C-c\C-k" 'ess-request-a-process)
(define-key map "\C-c\C-d" 'ess-doc-map)
(define-key map "\C-c\C-e" 'ess-extra-map)
(define-key map "\C-c\C-t" 'ess-dev-map)
map)
"Keymap for ESS help mode.")
(defvar ess-help-mode-menu
(list "ESS-help"
["Search Forward" isearch-forward t]
["Next Section" ess-skip-to-next-section t]
["Previous Section" ess-skip-to-previous-section t]
["Help on Section Skipping" ess-describe-sec-map t]
["Beginning of Buffer" beginning-of-buffer t]
["End of Buffer" end-of-buffer t]
"-"
["Help on ..." ess-display-help-on-object t]
["Apropos of ..." ess-display-help-apropos t]
["Index of ..." ess-display-package-index t]
["Vignettes" ess-display-vignettes t]
["Open in Browser" ess-display-help-in-browser t]
"-"
["Eval Line" ess-eval-line-and-step t]
["Eval Paragraph & step" ess-eval-paragraph-and-step t]
["Eval Region & Go" ess-eval-region-and-go t]
["Switch to ESS Process" ess-switch-to-ESS t]
["Switch to End of ESS Proc." ess-switch-to-end-of-ESS t]
["Switch _the_ Process" ess-switch-process t]
"-"
["Kill Buffer" kill-this-buffer t]
["Kill Buffer & Go" ess-kill-buffer-and-go t]
"-"
["Handy commands" ess-handy-commands t]
["Describe ESS-help Mode" ess-describe-help-mode t]
)
"Menu used in ess-help mode.")
(defun ess-help-mode ()
"Mode for viewing ESS help files.
Use SPC and DEL to page back and forth through the file.
Use `n' and `p' to move to next and previous section,
`s' to jump to a particular section; `s ?' for help.
Use `q' to return to your ESS session; `x' to kill this buffer first.
The usual commands for evaluating ESS source are available.
Other keybindings are as follows:
\\{ess-help-mode-map}"
(interactive)
(setq major-mode 'ess-help-mode)
(setq mode-name "ESS Help")
(use-local-map ess-help-mode-map)
(make-local-variable 'indent-tabs-mode)
(setq indent-tabs-mode nil)
(if ess-mode-syntax-table
(set-syntax-table ess-mode-syntax-table))
(require 'easymenu)
(easy-menu-define ess-help-mode-menu-map ess-help-mode-map
"Menu keymap for ess-help mode." ess-help-mode-menu)
(easy-menu-add ess-help-mode-menu-map ess-help-mode-map)
(setq ess-help-sec-map (make-sparse-keymap))
(dolist (pair ess-help-sec-keys-alist)
(define-key ess-help-sec-map (char-to-string (car pair))
'ess-skip-to-help-section))
(define-key ess-help-sec-map "?" 'ess-describe-sec-map)
(define-key ess-help-sec-map ">" 'end-of-buffer)
(define-key ess-help-sec-map "<" 'beginning-of-buffer)
(define-key ess-help-mode-map "s" ess-help-sec-map)
(run-hooks 'ess-help-mode-hook))
(defun ess-skip-to-help-section nil
"Jump to a section heading of a help buffer. The section selected
is determined by the command letter used to invoke the command, as
indicated by `ess-help-sec-keys-alist'. Use \\[ess-describe-sec-map]
to see which keystrokes find which sections."
(interactive)
(let ((old-point (point))
(case-fold-search nil))
(goto-char (point-min))
(let ((the-sec (cdr (assoc (if (featurep 'xemacs) last-command-char last-command-event)
ess-help-sec-keys-alist))))
(if (not the-sec) (error "Invalid section key: %c"
last-command-event)
(if (re-search-forward (concat "^" the-sec) nil t)
(recenter)
(message "No %s section in this help. Sorry." the-sec)
(goto-char old-point))))))
(defun ess-skip-to-next-section nil
"Jump to next section in ESS help buffer."
(interactive)
(let ((case-fold-search nil))
(if (re-search-forward ess-help-sec-regex nil 'no-error) nil
(message "No more sections."))))
(defun ess-skip-to-previous-section nil
"Jump to previous section in ESS help buffer."
(interactive)
(let ((case-fold-search nil))
(if (re-search-backward ess-help-sec-regex nil 'no-error) nil
(message "No previous section."))))
(defun ess-describe-help-mode nil
"Display help for `ess-mode'."
(interactive)
(describe-function 'ess-help-mode))
(defun ess-kill-buffer-and-go nil
"Kill the current buffer and switch back to the ESS process."
(interactive)
(kill-buffer (current-buffer))
(ess-switch-to-ESS nil))
(defun ess-describe-sec-map nil
"Display help for the `s' key."
(interactive)
(let ((keys-alist ess-help-sec-keys-alist))
(describe-function 'ess-skip-to-help-section)
(with-current-buffer "*Help*"
(setq buffer-read-only nil)
(goto-char (point-max))
(insert "\n\nCurrently defined keys are:
Keystroke Section
--------- -------\n")
(dolist (cs keys-alist)
(insert " "
(car cs)
" "
(cdr cs) "\n"))
(insert "\nFull list of key definitions:\n"
(substitute-command-keys
"\\{ess-help-sec-map}")))))
(defun ess-helpobjs-at-point (slist)
(let ((obj (ess-read-object-name-default))
(fun (condition-case ()
(save-excursion
(save-restriction
(narrow-to-region (max (point-min) (- (point) 1000))
(point-max))
(backward-up-list 1)
(backward-char 1)
(ess-read-object-name-default)))
(error nil))))
(if (and obj (not (string-match "[[:alpha:]]" obj)))
(setq obj nil))
(list (or (car (member obj slist))
(car (member fun slist)))
obj fun)))
(defun ess-find-help-file (p-string)
"Find help, prompting for P-STRING. Note that we can't search SAS,
Stata or XLispStat for additional information."
(ess-make-buffer-current)
(if ess-get-help-topics-function
(let* ((help-files-list (funcall ess-get-help-topics-function ess-current-process-name))
(hlpobjs (ess-helpobjs-at-point help-files-list)))
(ess-completing-read p-string (append (delq nil hlpobjs) help-files-list)
nil nil nil nil (car hlpobjs)))
(read-string (format "%s: " p-string))))
(defun ess-get-S-help-topics-function (name)
"Return a list of current S help topics associated with process NAME.
If 'sp-for-help-changed?' process variable is non-nil or
`ess-help-topics-list' is nil, (re)-populate the latter and
return it. Otherwise, return `ess-help-topics-list'."
(with-ess-process-buffer nil
(ess-write-to-dribble-buffer
(format "(ess-get-help-topics-list %s) .." name))
(if (or (not ess-help-topics-list)
(ess-process-get 'sp-for-help-changed?))
(progn
(ess-process-put 'sp-for-help-changed? nil)
(setq ess-help-topics-list
(ess-uniq-list
(append (ess-get-object-list name 'exclude-1st)
(ess-get-help-files-list)
(ess-get-help-aliases-list)
))))
ess-help-topics-list)))
(defun ess-get-help-files-list ()
"Return a list of files which have help available."
(apply 'nconc
(mapcar (lambda (str)
(let ((dirname (concat str "/.Help")))
(and (file-directory-p dirname)
(directory-files dirname))))
(ess-search-list))))
(defun ess-get-help-aliases-list ()
"Return a list of aliases which have help available."
(ess-write-to-dribble-buffer "Processing RDS files ...\n")
(ess-get-words-from-vector ".ess.getHelpAliases()\n"))
(defun ess-nuke-help-bs ()
"Remove ASCII underlining and overstriking performed by ^H codes."
(goto-char (point-min))
(while (search-forward "\b" nil t)
(let* ((preceding (char-after (- (point) 2)))
(following (following-char)))
(cond ((= preceding following)
(delete-char -2))
((= preceding ?\_)
(delete-char -2))
((= following ?\_)
(delete-region (1- (point)) (1+ (point)))))))
(goto-char (point-min))
(while (re-search-forward "URL:" nil t)
(delete-region (match-beginning 0) (match-end 0)))
(goto-char (point-min))
(while (re-search-forward "\n\n\n\n*" nil t)
(replace-match "\n\n"))
(goto-char (point-min))
(skip-chars-forward "\n")
(delete-region (point-min) (point)))
(defun ess-help-underline ()
"Replace _^H codes with underline face."
(save-excursion
(goto-char (point-min))
(while (search-forward "_" nil t)
(backward-delete-char 2)
(put-text-property (point) (1+ (point)) 'face 'underline))))
(defun ess-goto-info (node)
"Display node NODE from ess-mode info."
(require 'info)
(split-window)
(Info-goto-node (concat "(ess)" node)))
(defvar ess-describe-object-at-point-commands nil
"Commands cycled by `ess-describe-object-at-point'. Dialect
specific.")
(make-variable-buffer-local 'ess-describe-at-point-commands)
(defvar ess--descr-o-a-p-commands nil)
(defun ess-describe-object-at-point ()
"Get info for object at point, and display it in an electric buffer or tooltip.
If region is active use it instead of the object at point.
This is an electric command (`ess--execute-electric-command'),
which means that you can use the last key to cycle through the
action set (in this case `C-e').
After invocation of this command all standard emacs commands,
except those containing 'window' in their names, remove the
electric *ess-describe* buffer. Use `other-window' to switch to
*ess-describe* window.
Customize `ess-describe-at-point-method' if you wan to display
the description in a tooltip.
See also `ess-R-describe-object-at-point-commands' (and similar
option for other dialects)."
(interactive)
(if (not ess-describe-object-at-point-commands)
(message "Not implemented for dialect %s" ess-dialect)
(ess-force-buffer-current)
(let ((map (make-sparse-keymap))
(objname (or (and (use-region-p)
(buffer-substring-no-properties (point) (mark)))
(symbol-at-point)))
bs ess--descr-o-a-p-commands)
(unless objname (error "No object at point "))
(define-key map (vector last-command-event) 'ess--describe-object-at-point)
(let* ((inhibit-quit t)
(buf (ess--execute-electric-command
map (format "Press %s to cycle"
(single-key-description last-command-event))
nil nil objname))
(keys (read-key-sequence-vector ""))
(command (and keys (key-binding keys))))
(when (and (commandp command)
(bufferp buf)
(or (not (symbolp command))
(not (string-match "window" (symbol-name command)))))
(kill-buffer buf))
(setq unread-command-events
(append keys unread-command-events)))
)))
(defun ess--describe-object-at-point (ev objname)
(setq ess--descr-o-a-p-commands (or ess--descr-o-a-p-commands
(symbol-value ess-describe-object-at-point-commands)))
(let* ((com (format (car (pop ess--descr-o-a-p-commands)) objname))
(buf (get-buffer-create "*ess-describe*"))
pos)
(unless (eq ess-describe-at-point-method 'tooltip)
(display-buffer buf))
(sit-for .01)
(ess-command (concat com "\n") buf)
(with-current-buffer buf
(goto-char (point-min))
(insert (propertize (format "%s:\n\n" com) 'face 'font-lock-string-face))
(forward-line -1)
(setq pos (point))
(special-mode)
(local-set-key "k" 'kill-this-buffer))
(if (eq ess-describe-at-point-method 'tooltip)
(ess-tooltip-show-at-point
(with-current-buffer buf (buffer-string)) 0 30)
(display-buffer buf)
(set-window-point (get-buffer-window buf) pos)
buf)))
(defun ess-submit-bug-report ()
"Submit a bug report on the ess-mode package."
(interactive)
(require 'ess-mode)
(require 'reporter)
(let ((reporter-prompt-for-summary-p 't))
(reporter-submit-bug-report
"[email protected]"
(concat "ess-mode " (ess-version-string))
(list 'ess-language
'ess-dialect
'ess-ask-for-ess-directory
'ess-ask-about-transfile
'ess-directory
'ess-keep-dump-files
'ess-source-directory
'ess-use-ido
'ess-use-eldoc
'ess-use-tracebug
'ess-use-auto-complete
'ess-eval-visibly-p
'ess-can-eval-in-background
'ess-local-process-name)
nil
(lambda ()
(rfc822-goto-eoh)
(forward-line 1)
(insert "\n\n-------------------------------------------------------\n")
(insert "This bug report will be sent to the ESS bugs email list\n")
(insert "Press C-c C-c when you are ready to send your message.\n")
(insert "-------------------------------------------------------\n\n")
(insert (with-current-buffer "*ESS*"
(goto-char (point-max))
(forward-line -100)
(buffer-substring-no-properties (point) (point-max))))
))))
(provide 'ess-help)