2020-11-21 13:16:30 +01:00
|
|
|
" Vim filetype plugin file
|
|
|
|
" Language: Protobuf Text Format
|
|
|
|
" Maintainer: Lakshay Garg <lakshayg@outlook.in>
|
|
|
|
" Last Change: 2020 Nov 17
|
2023-08-29 05:32:27 +10:00
|
|
|
" 2023 Aug 28 by Vim Project (undo_ftplugin)
|
2020-11-21 13:16:30 +01:00
|
|
|
" Homepage: https://github.com/lakshayg/vim-pbtxt
|
|
|
|
|
|
|
|
if exists("b:did_ftplugin")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
|
|
|
setlocal commentstring=#\ %s
|
|
|
|
|
2023-08-29 05:32:27 +10:00
|
|
|
let b:undo_ftplugin = "setlocal commentstring<"
|
2020-11-21 13:16:30 +01:00
|
|
|
|
|
|
|
" vim: nowrap sw=2 sts=2 ts=8 noet
|