On Mon, Mar 09, at 09:16 Ben Kim wrote:
> 
> 
> Thanks. I could not figure out how to navigate through the results. I 
> just started vim without opening files, and did something like
> 
>       :vimgrep /\cstandard/ n*
> 
> Vim opens only the first file. I'll have to read the help again.
> 
> Here's a small shell script I used for the moment if someone finds this 
> thread and can use a quickfix.

Actually in :help quickfix you will also find the answer to your
question above (about navigating through the results).
Read more in:
    
    :help :copen
    :help :cnext
    :help :cprevious

> 
> #!/bin/sh
> eval last_arg=\$$#
> while [ $# -gt 1 ]; do
>      args=`echo $args $1`
>      shift
> done
> iconv -f UTF-16 -t ASCII $last_arg |egrep $args
> 
> 
> Regards,
> Ben Kim
> 

Regards,
Ag.

--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to