Răsfoiți Sursa

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 luni în urmă
părinte
comite
3eb1832546
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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' },
   },
 })