简体   繁体   中英

remap Enter in normal mode but not in command line

I have remapped the Enter key in normal mode to add a new line:

nnoremap <CR> o<Esc>k

Works great, but now in the command line (entered by q:) this command add new line either, but I would like to leave it in default mode, this is execute the selected command from history.

So the question is, how can I remap a key in normal mode, but not in command line?

This autocommand does what you want:

augroup commandlinewindow
  autocmd!
  autocmd CmdwinEnter * nnoremap <buffer> <CR> <CR>
augroup END

It's the "command-line window", by the way, not the "command line".

In addition to command-line window you'll almost certainly need this one. For quickfix window:

autocmd BufReadPost quickfix nnoremap <buffer> <CR> <CR>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM