From 6b95e90cebb6837846e7a8a3d3efff41e6630b66 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 11 May 2019 11:13:28 +1200 Subject: Set up custom ftplugin for plain text files --- vim/ftplugin/text.vim | 14 ++++++++++++++ vim/vimrc | 3 ++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 vim/ftplugin/text.vim (limited to 'vim') diff --git a/vim/ftplugin/text.vim b/vim/ftplugin/text.vim new file mode 100644 index 00000000..a5dc810f --- /dev/null +++ b/vim/ftplugin/text.vim @@ -0,0 +1,14 @@ +" The 'text' filetype was only added in v7.4.365, so anything older than this +" requires our own filetype plugin to prevent the b:undo_ftplugin extensions +" in after/ftplugin/text.vim from panicking. +if v:version > 704 + \ || v:version == 703 && has('patch365') + finish +endif +let b:did_ftplugin = 1 + +" Set comment metacharacters +setlocal comments+=fb:- " Dashed lists +setlocal comments+=fb:* " Bulleted lists +setlocal comments+=n:> " Mail quotes +let b:undo_ftplugin = 'setlocal comments<' diff --git a/vim/vimrc b/vim/vimrc index 6b85ea37..17282ce1 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -82,8 +82,9 @@ if exists('+breakindent') set breakindent endif -" Clear default 'comments' value, let the filetype handle it +" Clear default 'comments' and 'commentstring', filetype to handle set comments= +set commentstring= " Add completion options if exists('+completeopt') -- cgit v1.2.3