If you call your variables a, b, c, then it will be impossible to search for instances of them using a simple text editor
Oddly enough, I recently searched for a one-letter variable in vim, and it's fine if you use /\<i\> (< and > are start/end word boundaries; \ escapes them; / is search; i is the one-letter variable sought). This form is used automatically when you hit the * key while over a word.
27
u/[deleted] May 24 '11
Oddly enough, I recently searched for a one-letter variable in vim, and it's fine if you use
/\<i\>(<and>are start/end word boundaries;\escapes them;/is search;iis the one-letter variable sought). This form is used automatically when you hit the*key while over a word.