gyp.vim 311 B

123456789101112131415
  1. " Vim filetype plugin
  2. " Language: GYP
  3. " Maintainer: ObserverOfTime <chronobserver@disroot.org>
  4. " Last Change: 2022 Sep 27
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal formatoptions-=t
  10. setlocal commentstring=#\ %s comments=b:#,fb:-
  11. let b:undo_ftplugin = 'setlocal fo< cms< com<'