On 08/22/2010 08:42 PM, Yosi Izaq wrote:
> Hi,
> 
> Say I'm executing a shell command with long output and want to read
> the results. Just running the cmd will only show the last lines of
> output. The question is how to make VIM present it in a scrollable
> window (w/o writing to explicit file...)?- Alternately, how to direct
> the output to quickfix or location list?
> 
> Ex:
> ! cd %:h && nm `find .. -name *.so ` <cr>
> 
> output all the symbols in the shared object artifacts.

should work with standard unix command `less` and pipe , did you try
with it ?

! cd %:h && nm `find .. -name *.so ` | less <cr>

-- 
Best Regards,
Aaron Lewis - PGP: 0x4A6D32A0
FingerPrint EA63 26B2 6C52 72EA A4A5 EB6B BDFE 35B0 4A6D 32A0
irc: A4R0NL3WI5 on freenode

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

Reply via email to