You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
544 B

  1. set ts=4
  2. set sw=4
  3. " make invisible errors, very visible
  4. "
  5. " no trailing whitespacing, no spaces at the begging of the line.
  6. " and no tabs after spaces.
  7. syn match WrongWhitespace /\s\+$\|^ \+\| \+\t/
  8. " no more than 7 spaces for aligning
  9. "
  10. " NOTE: aligning after `int ab(` would break this rule, as 6 or 7
  11. " spaces would be needed without a previous tab. but two letters
  12. " as a function name, please don't.
  13. syn match WrongWhitespace /\t \{8,}/
  14. "match WrongWhitespace / \+\ze\t/ " what is this?
  15. highlight WrongWhitespace ctermbg=red guibg=red