diff options
author | Teddy Wing | 2017-04-24 14:16:29 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-24 14:16:29 +0200 |
commit | a50b3c3430c7c2031c8e7dd430c83569a8c78f16 (patch) | |
tree | acc53bb4cb41ec41d1435a15e37e108aa61fab6f | |
parent | dc47471f27d5f50a439ffe28b3b5bb03003c1335 (diff) | |
download | dotvim-a50b3c3430c7c2031c8e7dd430c83569a8c78f16.tar.bz2 |
vimrc: Make <C-w><C-q> a no-op
Get rid of this freaking good-for-nothing command that keeps g'all dang
messing me the frak up and closing my windows!
-rw-r--r-- | vimrc | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -363,6 +363,9 @@ " 2017.04.07: " * Make the "Ctrl-W q" command a no-op. " +" 2017.04.24: +" * Make "Ctrl-W Ctrl-Q" a no-op. +" " Pathogen @@ -655,6 +658,7 @@ nnoremap <leader>tl :execute "tabnext " . g:last_viewed_tab<cr> " Get rid of window quit command nnoremap <C-w>q <nop> +nnoremap <C-w><C-q> <nop> " Quickfix nnoremap ]q :cnext<cr> |