aboutsummaryrefslogtreecommitdiff
path: root/vim/after
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-21 20:33:49 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-21 20:34:08 +1200
commitb9c58900dc023010acdd8c8de97797c5b8510c61 (patch)
tree46094c2b8a7ed5336128590a0e5ee0af07dddbec /vim/after
parentFlesh out a comment (diff)
downloaddotfiles-b9c58900dc023010acdd8c8de97797c5b8510c61.tar.gz
dotfiles-b9c58900dc023010acdd8c8de97797c5b8510c61.zip
Remove '\'' sh ftplugin map; <Esc> interference
Diffstat (limited to 'vim/after')
-rw-r--r--vim/after/ftplugin/sh.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/after/ftplugin/sh.vim b/vim/after/ftplugin/sh.vim
index 9afd5086..0327db78 100644
--- a/vim/after/ftplugin/sh.vim
+++ b/vim/after/ftplugin/sh.vim
@@ -44,12 +44,3 @@ nnoremap <buffer> <LocalLeader>l
\ :<C-U>compiler shellcheck<CR>
let b:undo_ftplugin .= '|nunmap <buffer> <LocalLeader>c'
\ . '|nunmap <buffer> <LocalLeader>l'
-
-" Mapping to insert '\'' with Alt+'; not sure I'll keep this just yet
-if has('gui_running')
- inoremap <buffer> <M-'> '\''
- let b:undo_ftplugin .= '|iunmap <buffer> <M-''>'
-else
- inoremap <buffer> <Esc>' '\''
- let b:undo_ftplugin .= '|iunmap <buffer> <Esc>'''
-endif