kdl.vim 409 B

123456789101112131415161718
  1. " Vim filetype plugin
  2. " Language: KDL
  3. " Author: Aram Drevekenin <aram@poor.dev>
  4. " Maintainer: Yinzuo Jiang <jiangyinzuo@foxmail.com>
  5. " Last Change: 2024-06-10
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. setlocal comments=://
  11. setlocal commentstring=//\ %s
  12. setlocal formatoptions-=t
  13. let b:undo_ftplugin = 'setlocal comments< commentstring< formatoptions<'