Re: Search pattern - without keywords

2006-08-04 Thread Charles E Campbell Jr
SHANKAR R-R66203 wrote: 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. You may find LogiPat

Re: Search pattern - without keywords

2006-07-27 Thread Marc Weber
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,

Search pattern - without keywords

2006-07-26 Thread SHANKAR R-R66203
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. Best Regards, Shankar