소스 검색

nixpkgs/neovim: fix blink keymap fallbacks

This was falling back to mappings only but we want <C-D> to map back to
the default behavior.
Thomas Dy 2 달 전
부모
커밋
3eb1832546
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .config/nixpkgs/neovim/plugins.lua

+ 2 - 2
.config/nixpkgs/neovim/plugins.lua

@@ -406,8 +406,8 @@ require('blink.cmp').setup({
   },
   keymap = {
     ['<Enter>'] = { 'select_and_accept', 'fallback' },
-    ['<C-u>'] = { 'scroll_documentation_up', 'fallback_to_mappings' },
-    ['<C-d>'] = { 'scroll_documentation_down', 'fallback_to_mappings' },
+    ['<C-u>'] = { 'scroll_documentation_up', 'fallback' },
+    ['<C-d>'] = { 'scroll_documentation_down', 'fallback' },
   },
 })