Added TableModeEnabled & TableModeDisabled autocmd

* Added custom User autocmds TableModeEnabled & TableModeDisabled for
  working with other plugins like vim-pandoc #43
This commit is contained in:
Dhruva Sagar
2014-11-15 16:38:22 +05:30
parent ea78f62565
commit ffc734c38d
2 changed files with 11 additions and 1 deletions

View File

@@ -117,6 +117,12 @@ if !hasmapto('<Plug>(table-mode-tableize-delimiter)')
xmap <Leader>T <Plug>(table-mode-tableize-delimiter)
endif
augroup TableMode "{{{1
au!
autocmd User TableModeEnabled echo 'Table Mode Enabled'
autocmd User TableModeDisabled echo 'Table Mode Disabled'
augroup END
" Avoiding side effects {{{1
let &cpo = s:save_cpo