yacc.vim 410 B

1234567891011121314151617
  1. " Vim filetype plugin
  2. " Language: Yacc
  3. " Maintainer: Riley Bruins <ribru17@gmail.com>
  4. " Last Change: 2024 Jul 06
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. " Set 'comments' to format dashed lists in comments.
  10. " Also include ///, used for Doxygen.
  11. setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,:///,://
  12. setlocal commentstring=//\ %s
  13. let b:undo_ftplugin = 'setl com< cms<'