neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

pbtxt.vim (478B)


      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 
      8 if exists("b:did_ftplugin")
      9  finish
     10 endif
     11 let b:did_ftplugin = 1
     12 
     13 setlocal commentstring=#\ %s
     14 
     15 let b:undo_ftplugin = "setlocal commentstring<"
     16 
     17 " vim: nowrap sw=2 sts=2 ts=8 noet