aboutsummaryrefslogtreecommitdiff
path: root/vimrc-common
diff options
context:
space:
mode:
authorMax Christian Pohle2023-10-20 19:47:50 +0200
committerMax Christian Pohle2023-10-20 19:47:50 +0200
commitbb61c6f72c569dce81a619bf601524b8e627dfd2 (patch)
treee2c1ad924bf94e8c173c4455b8b064c07d649f61 /vimrc-common
parent7443eb6e3889e2fca9bc3bdcefd7569590f8f2a2 (diff)
downloadvim-bb61c6f72c569dce81a619bf601524b8e627dfd2.tar.bz2
vim-bb61c6f72c569dce81a619bf601524b8e627dfd2.zip
Furter house keeping
Diffstat (limited to 'vimrc-common')
-rw-r--r--vimrc-common8
1 files changed, 4 insertions, 4 deletions
diff --git a/vimrc-common b/vimrc-common
index 6c06c66..fb760cb 100644
--- a/vimrc-common
+++ b/vimrc-common
@@ -359,10 +359,10 @@ augroup KEYBOARD_MAPPING
359 359
360 " if the wildmenu is configured to to display suggestions vertically, then 360 " if the wildmenu is configured to to display suggestions vertically, then
361 " reconfigure the cursor keys to work in that direction 361 " reconfigure the cursor keys to work in that direction
362 " if &wildoptions =~# 'pum' 362 if &wildoptions =~# 'pum'
363 " cnoremap <expr> <up> pumvisible() ? "<C-p>" : "\<up>" 363 cnoremap <expr> <up> pumvisible() ? "<C-p>" : "\<up>"
364 " cnoremap <expr> <down> pumvisible() ? "<C-n>" : "\<down>" 364 cnoremap <expr> <down> pumvisible() ? "<C-n>" : "\<down>"
365 " endif 365 endif
366 366
367 367
368 " INSERT_MODE_MAPPINGS: 368 " INSERT_MODE_MAPPINGS:
..