aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-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