Thursday, May 27, 2010

Re: problem about dispaly perldoc info in vim

> map  <F2>  :let w="<cword>"<CR>:top new "help"<CR>:1! perldoc -t w<CR>

You're looking for something like

map <F2> :let w = expand('<cword>')
\ <bar>exe 'top new '.w
\ <bar>setl bt=nofile noswf
\ <bar>0put=system('perldoc -tf '.w)
\ <bar>1<cr>

but this has lots of problems. Surely one of the scripts at
http://www.vim.org/scripts/ does what you want with more
functionality. Search for perldoc.

Regards, John

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

No comments: