Browse Source

fix(vim): avoid obscure mapping issue

Kyle P Davis 4 years ago
parent
commit
62b92e9cb9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .vimrc

+ 1 - 1
.vimrc

@@ -32,7 +32,7 @@ set foldlevelstart=99
 vmap <C-c> :w !pbcopy<CR><CR>
 
 " no more ex mode!
-nnoremap Q <nop>
+nmap Q <nop>
 
 " force syntax on a few file types
 autocmd BufNewFile,BufReadPost *.json set filetype=json syntax=javascript