diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2010-11-03 18:17:29 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2010-11-03 18:21:03 +0100 |
commit | dec2ef525e357fd744275d2c0b9fa682cf9e214c (patch) | |
tree | 126ea2a2c16266996b001ec1002a2c44361e6581 /.vim/after/ftplugin | |
parent | 5842851b7a0d77cf7b33f56c36db3fc4d1fa3789 (diff) | |
download | dotfiles-dec2ef525e357fd744275d2c0b9fa682cf9e214c.tar.gz dotfiles-dec2ef525e357fd744275d2c0b9fa682cf9e214c.tar.bz2 dotfiles-dec2ef525e357fd744275d2c0b9fa682cf9e214c.zip |
Disable (( mapping in vim tex mode
Diffstat (limited to '')
-rw-r--r-- | .vim/after/ftplugin/tex.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.vim/after/ftplugin/tex.vim b/.vim/after/ftplugin/tex.vim index 6f44a3c..e727ab8 100644 --- a/.vim/after/ftplugin/tex.vim +++ b/.vim/after/ftplugin/tex.vim @@ -1,2 +1,3 @@ -" disable annoying {{ completion +" disable annoying {{ and (( completion call IMAP('{{', '{{', 'tex') +call IMAP('((', '((', 'tex') |