Are you trying to find a regexp in your file based on a search term? If that is the case, then do: Code: :set ignorecase
This will make searches case insensitive.
The other option is to use: Code: :set ignorecase smartcase
This will, if your search term includes no uppercase letters, do a case-insensitive search. If there is an uppercase letter, then the search becomes case-sensitive. So, for example:
bob --> bob, Bob, BOb, BOB, etc.
boB --> boB
BoB --> BoB
And so on.
If you mean that you're trying to search through your file with a regular expression (as in, the search term is a regexp), I found a tutorial which may help at: http://www.geocities.com/volontir/
__________________
DISTRO=Ubuntu
Registered Linux User #388732
|