aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION4
-rw-r--r--vim/after/ftplugin/sh.vim4
2 files changed, 4 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index dca0777c..198a08b5 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v4.11.0
-Mon Jan 14 11:06:26 UTC 2019
+tejr dotfiles v4.12.0
+Tue Jan 15 02:25:43 UTC 2019
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