pbtxt.vim 438 B

12345678910111213141516171819202122
  1. " Vim filetype plugin file
  2. " Language: Protobuf Text Format
  3. " Maintainer: Lakshay Garg <lakshayg@outlook.in>
  4. " Last Change: 2020 Nov 17
  5. " Homepage: https://github.com/lakshayg/vim-pbtxt
  6. if exists("b:did_ftplugin")
  7. finish
  8. endif
  9. let b:did_ftplugin = 1
  10. let s:cpo_save = &cpo
  11. set cpo&vim
  12. setlocal commentstring=#\ %s
  13. let &cpo = s:cpo_save
  14. unlet s:cpo_save
  15. " vim: nowrap sw=2 sts=2 ts=8 noet