From 88774a30c0b1957a6177cdb69d2becedae610299 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 18 Nov 2020 12:12:39 +0100 Subject: patch 8.2.2006: .pbtxt files are not recognized Problem: .pbtxt files are not recognized. Solution: Recognize .pbtxt as protobuf text buffers. (closes #7326) --- runtime/filetype.vim | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') diff --git a/runtime/filetype.vim b/runtime/filetype.vim index a16a28d7af..9381402031 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1305,6 +1305,7 @@ au BufNewFile,BufRead *.pml setf promela " Google protocol buffers au BufNewFile,BufRead *.proto setf proto +au BufNewFile,BufRead *.pbtxt setf pbtxt " Protocols au BufNewFile,BufRead */etc/protocols setf protocols -- cgit v1.2.3