proto.vim 396 B

12345678910111213141516171819
  1. " Vim filetype plugin
  2. " Language: Protobuf
  3. " Maintainer: David Pedersen <limero@me.com>
  4. " Last Change: 2024 Dec 09
  5. if exists('b:did_ftplugin')
  6. finish
  7. endif
  8. let b:did_ftplugin = 1
  9. setlocal formatoptions-=t formatoptions+=croql
  10. setlocal comments=s1:/*,mb:*,ex:*/,://
  11. setlocal commentstring=//\ %s
  12. let b:undo_ftplugin = "setlocal formatoptions< comments< commentstring<"
  13. " vim: sw=2 sts=2 et