From 8d743d02f229aeed600bbc9a15736ad9e7be9507 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 28 Oct 2018 13:59:07 +0100 Subject: vim-patch:df980db69b83 update a few runtime files https://github.com/vim/vim/commit/df980db69b831381c37c3e2973a6eefa10df305c Note: omit hl-Terminal, Nvim has its own way of highlighting :terminal. --- runtime/ftplugin/cmake.vim | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 runtime/ftplugin/cmake.vim (limited to 'runtime/ftplugin') diff --git a/runtime/ftplugin/cmake.vim b/runtime/ftplugin/cmake.vim new file mode 100644 index 0000000000..e81cd4071c --- /dev/null +++ b/runtime/ftplugin/cmake.vim @@ -0,0 +1,16 @@ +" Vim filetype plugin +" Language: CMake +" Maintainer: Keith Smiley +" Last Change: 2017 Dec 24 + +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif + +" Don't load another plugin for this buffer +let b:did_ftplugin = 1 + +let b:undo_ftplugin = "setl commentstring<" + +setlocal commentstring=#\ %s -- cgit