aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/after/ftplugin/sh.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim
index d6716a3d..0fece696 100644
--- a/vim/after/ftplugin/sh.vim
+++ b/vim/after/ftplugin/sh.vim
@@ -49,8 +49,8 @@ let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>c'
" Mapping to insert '\'' with Alt+'; not sure I'll keep this just yet
if has('gui_running')
inoremap <buffer> <M-'> '\''
- let b:undo_ftplugin .= '|nunmap <buffer> <M-''>'
+ let b:undo_ftplugin .= '|iunmap <buffer> <M-''>'
else
inoremap <buffer> <Esc>' '\''
- let b:undo_ftplugin .= '|nunmap <buffer> <Esc>'''
+ let b:undo_ftplugin .= '|iunmap <buffer> <Esc>'''
endif