" vim macro to jump to devhelp topics. " Idea copied from the same "emacs integration" script by " Richard Hult . " -- Gert function! DevHelpCurrentWord() let word = expand("") exe "!devhelp -s " . word endfunction " Example: bind h to start devhelp and search for the word under the " cursor nmap h :call DevHelpCurrentWord() " Tips: use -g WIDTHxHEIGHT+XOFF+YOFF to set the size and position of " the window