diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-11-18 12:12:39 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-11-18 12:12:39 +0100 |
commit | 88774a30c0b1957a6177cdb69d2becedae610299 (patch) | |
tree | 09d9a5ffb281bd0f8a8615e04c783b3fa345eb83 /runtime | |
parent | c77534c303721df4024fd6cfd51098d593b7d4da (diff) | |
download | vim-git-88774a30c0b1957a6177cdb69d2becedae610299.tar.gz |
patch 8.2.2006: .pbtxt files are not recognizedv8.2.2006
Problem: .pbtxt files are not recognized.
Solution: Recognize .pbtxt as protobuf text buffers. (closes #7326)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index a16a28d7a..938140203 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 |