Vim case insensitive search
1 Comment
Not much of news, but I ran into this problem today, do a case insensitive search in vim. this can be done with: :set ci or :set caseinsensitive This makes future searches case insensitive. A per search way is this: /pattern\c Notice the \c. It does not really matter where you put that \c as [...]