From 80b398502a752dafdbb8187f72e85d8c1f7fc5ae Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 28 Mar 2019 15:26:31 +1300 Subject: Add textarea filetype This custom filetype is just a hook to hang functionality for TextEditorAnywhere documents under Windows. Most of the time, it's me writing email, or comments that benefit from email formatting, so I've configured f to switch to the mail filetype. This switching could probably benefit from a plugin, actually. --- vim/ftplugin/textarea.vim | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vim/ftplugin/textarea.vim (limited to 'vim/ftplugin') diff --git a/vim/ftplugin/textarea.vim b/vim/ftplugin/textarea.vim new file mode 100644 index 00000000..b5c5ca98 --- /dev/null +++ b/vim/ftplugin/textarea.vim @@ -0,0 +1,10 @@ +" Stop here if the user doesn't want ftplugin mappings +if exists('g:no_plugin_maps') || exists('g:no_textarea_maps') + finish +endif + +" Switch to mail filetype, just because that's very often the contents of text +" areas I edit using TextEditorAnywhere +nnoremap f + \ :setlocal filetype=mail +let b:undo_ftplugin = '|nunmap f' -- cgit v1.2.3