Changes between Version 4 and Version 5 of CodingGuidelines/VIM
- Timestamp:
- Aug 12, 2009, 12:32:49 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingGuidelines/VIM
v4 v5 12 12 call matchadd('Search', '\(for\|if\|select\|while\)(', -1) "keyword without space after it 13 13 call matchadd('Search', '[a-zA-Z0-9][,=<>/+\-*;][a-zA-Z0-9]', -1) "operator without space around it 14 call matchadd('Search', '[^* /][,=/+\-* ]$', -1) "operator at end of line (without false positives on/* and */)14 call matchadd('Search', '[^*][=/+\- ]$', -1) "operator at end of line (without false positives on char*\nclass::method(), /* and */) 15 15 :endfu 16 16