aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vim/filetype.vim4
-rw-r--r--vim/ftplugin/textarea.vim10
2 files changed, 14 insertions, 0 deletions
diff --git a/vim/filetype.vim b/vim/filetype.vim
index 8a86ac1d..8a477ecc 100644
--- a/vim/filetype.vim
+++ b/vim/filetype.vim
@@ -384,6 +384,10 @@ augroup filetypedetect
autocmd BufNewFile,BufRead
\ ?*.ti
\ setfiletype terminfo
+ " TextEditorAnywhere text field
+ autocmd BufNewFile,BufRead
+ \ TextEditorAnywhere_??_??_??.txt
+ \ setfiletype textarea
" Tidy config
autocmd BufNewFile,BufRead
\ .tidyrc
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 <buffer> <LocalLeader>f
+ \ :<C-U>setlocal filetype=mail<CR>
+let b:undo_ftplugin = '|nunmap <buffer> <LocalLeader>f'