1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

command mode mappings do not need <silent> arg

This commit is contained in:
jdhao 2020-09-02 09:01:45 +08:00
parent c6b71c1dea
commit 2880537626

View File

@ -1,6 +1,6 @@
" Fix key mapping issues for GUI
inoremap <silent> <S-Insert> <C-R>+
cnoremap <silent> <S-Insert> <C-R>+
cnoremap <S-Insert> <C-R>+
nnoremap <silent> <C-6> <C-^>
" To check if neovim-qt is running, use `exists('g:GuiLoaded')`,