From da0b2c3d6f63d0179cf21d9f5331e1ef318a71b7 Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Fri, 27 Nov 2020 12:03:43 -0600 Subject: [PATCH] .vimrc: Change hotkey for QuickfixToggle() Change hotkey for QuickfixToggle() to be `q`, to better match the tpope/vim-unimpaired `:cprev` and `:cnext` keybindings -- `[q` and `]q` respectively. --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index c06b26c..7a0da03 100644 --- a/.vimrc +++ b/.vimrc @@ -382,7 +382,7 @@ function! QuickfixToggle() cclose endif endfunction -nmap cc :call QuickfixToggle() +nmap q :call QuickfixToggle() " toggle diffmode for a buffer function! DiffToggle() if &diff -- 2.43.0