Changes between Version 4 and Version 5 of CodingGuidelines/VIM


Ignore:
Timestamp:
Aug 12, 2009, 12:32:49 PM (15 years ago)
Author:
pulkomandy
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingGuidelines/VIM

    v4 v5  
    1212        call matchadd('Search', '\(for\|if\|select\|while\)(', -1) "keyword without space after it
    1313        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 */)
    1515:endfu
    1616