aboutsummaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorTeddy Wing2017-04-24 14:16:29 +0200
committerTeddy Wing2017-04-24 14:16:29 +0200
commita50b3c3430c7c2031c8e7dd430c83569a8c78f16 (patch)
treeacc53bb4cb41ec41d1435a15e37e108aa61fab6f /vimrc
parentdc47471f27d5f50a439ffe28b3b5bb03003c1335 (diff)
downloaddotvim-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!
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/vimrc b/vimrc
index d288cda..daa8533 100644
--- a/vimrc
+++ b/vimrc
@@ -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>