aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-01-15 15:25:43 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-01-15 15:25:43 +1300
commit56b8784e745cc5cd0bc0ceee8178e397ac598252 (patch)
tree3391f67abc18fde0e4d38798d87ff9f8803e48a4
parentMerge branch 'release/v4.11.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-56b8784e745cc5cd0bc0ceee8178e397ac598252.tar.gz
dotfiles-56b8784e745cc5cd0bc0ceee8178e397ac598252.zip
Merge branch 'release/v4.12.0'v4.12.0
* release/v4.12.0: Bump VERSION Correct unmapping commands for sh '\''
-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