On Thu, Jul 27, 2006 at 07:32:48AM +0530, SHANKAR R-R66203 wrote:
> Hi All,
>    I want to match all the words in a file which are not keywords.
>    In a verilog code, I want to match all the signal names execpt for
> the keywords.
> 
>   /\w\+ finds all the words.
>   But How do I make vim understand, not to pick up any keyword.

See :h @!
The if then example. (3. one)
This sequence matches any character which doesn't start the "then" word.
you have to replace any character by any word and then by any keyword..
\(then\)[EMAIL PROTECTED]

Hope this helps

Marc Weber

Reply via email to