File: devhelp.el

package info (click to toggle)
devhelp 0.19.1-6
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,712 kB
  • ctags: 688
  • sloc: sh: 9,315; ansic: 5,790; cpp: 645; python: 316; makefile: 294; perl: 216; lisp: 6
file content (14 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; Emacs integration by Richard Hult <richard@imendio.com>

(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)

; Tips: use -g WIDTHxHEIGHT+XOFF+YOFF to set the size and position of
; the window