pbtxt.vim 478 B

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