Added silent! to ignore errors on disabling errors

This commit is contained in:
Dhruva Sagar
2014-04-07 19:09:20 +05:30
parent 943496c535
commit 12f4c39982

View File

@@ -49,7 +49,7 @@ function! s:ToggleMapping() "{{{2
execute "inoremap <silent> <buffer> " . b:table_mode_separator_map . ' ' .
\ b:table_mode_separator_map . "<Esc>:call tablemode#TableizeInsertMode()<CR>a"
else
execute "iunmap <silent> <buffer> " . b:table_mode_separator_map
silent! execute "iunmap <silent> <buffer> " . b:table_mode_separator_map
endif
endfunction