Changes between Version 5 and Version 6 of CodingGuidelines/VIM


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

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingGuidelines/VIM

    v5 v6  
    1111        call matchadd('Search', '  ', -1)        " probably wrong indenting
    1212        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 it
     13        call matchadd('Search', '[a-zA-Z0-9][,=>/+\-*;][a-zA-Z0-9]', -1) "operator without space around it (without template_d<t_ype>)
    1414        call matchadd('Search', '[^*][=/+\- ]$', -1) "operator at end of line (without false positives on char*\nclass::method(), /* and */)
    1515:endfu