aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/textarea.vim
blob: c6c2f1fd0d14590ddcfe5521ea7d095404d91826 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
" Stop here if the user doesn't want ftplugin mappings
if exists('no_plugin_maps') || exists('no_textarea_maps')
  finish
endif

" Local mapping to 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'