view runtime/ftplugin/pbtxt.vim @ 29354:3a49645302e6

Added tag v9.0.0019 for changeset 0c403f53b3727f1c82aec6bbdda1cdaa8b1455fd
author Bram Moolenaar <Bram@vim.org>
date Fri, 01 Jul 2022 20:15:04 +0200
parents e7c125224b1a
children 02939ae3aaca
line wrap: on
line source

" Vim filetype plugin file
" Language:             Protobuf Text Format
" Maintainer:           Lakshay Garg <lakshayg@outlook.in>
" Last Change:          2020 Nov 17
" Homepage:             https://github.com/lakshayg/vim-pbtxt

if exists("b:did_ftplugin")
  finish
endif

let b:did_ftplugin = 1

let s:cpo_save = &cpo
set cpo&vim

setlocal commentstring=#\ %s

let &cpo = s:cpo_save
unlet s:cpo_save

" vim: nowrap sw=2 sts=2 ts=8 noet