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