File: devhelp.el

package info (click to toggle)
devhelp 0.3-10
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,056 kB
  • ctags: 1,261
  • sloc: ansic: 10,528; sh: 6,686; makefile: 422; yacc: 318; python: 253; lisp: 6
file content (9 lines) | stat: -rw-r--r-- 280 bytes parent folder | download
1
2
3
4
5
6
7
8
9
(defun devhelp-word-at-point ()
  "runs devhelp"
  (interactive)
  (setq w (current-word))
  (start-process-shell-command "devhelp" nil "devhelp" "-s" w)
  )

; Example: bind F7 to start devhelp and search for the word at the point.
;;(global-set-key [f7] 'devhelp-word-at-point)