desktop.vim 382 B

123456789101112131415
  1. " Vim filetype plugin file
  2. " Language: XDG desktop entry
  3. " Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com )
  4. " Last Change: 2022-07-26
  5. " 2024-05-24 by Riley Bruins <ribru17@gmail.com> ('commentstring')
  6. if exists('b:did_ftplugin')
  7. finish
  8. endif
  9. let b:did_ftplugin = v:true
  10. setl comments=:#
  11. setl commentstring=#\ %s
  12. let b:undo_ftplugin = 'setl com< cms<'