lang/sh: use (wo)man for docs lookup handler
i.e. Press K to look symbol at point up in man pages.
This commit is contained in:
parent
d2a5d2f2aa
commit
813f5da263
2 changed files with 11 additions and 0 deletions
|
@ -36,3 +36,13 @@
|
|||
(with-current-buffer "*shell*"
|
||||
(rename-buffer (format "*shell [%s]*" dest-sh))
|
||||
(current-buffer))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +sh-lookup-documentation-handler ()
|
||||
"Look up documentation in `man' or `woman'."
|
||||
(interactive)
|
||||
(call-interactively
|
||||
(if (executable-find "man")
|
||||
#'man
|
||||
#'woman))
|
||||
(current-buffer))
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
:config
|
||||
(set-electric! 'sh-mode :words '("else" "elif" "fi" "done" "then" "do" "esac" ";;"))
|
||||
(set-repl-handler! 'sh-mode #'+sh/open-repl)
|
||||
(set-lookup-handlers! 'sh-mode :documentation #'+sh-lookup-documentation-handler)
|
||||
(set-ligatures! 'sh-mode
|
||||
;; Functional
|
||||
:def "function"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue