Skip to content

Commit 314962b

Browse files
authored
Merge pull request #1144 from jules-sommer/main
completion/blink-cmp: added keymap "inherit" preset
2 parents e48638a + 2c9a8e2 commit 314962b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/release-notes/rl-0.8.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,10 @@
500500
- Add [nvim-highlight-colors] plugin in `vim.ui.nvim-highlight-colors` with
501501
`enable` and `setupOpts`
502502

503+
- Fix [blink.cmp] keymap preset types to allow alternate cmdline, terminal, etc
504+
modes to `inherit` the default mode keymaps. This is an option as per the
505+
[blink.cmp] docs and is now supported in nvf.
506+
503507
[PartyWumpus](https://github.com/PartyWumpus):
504508

505509
[typst-concealer]: https://github.com/PartyWumpus/typst-concealer

modules/plugins/completion/blink-cmp/blink-cmp.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
freeformType = attrsOf (listOf (either str luaInline));
1010
options = {
1111
preset = mkOption {
12-
type = enum ["default" "none" "super-tab" "enter" "cmdline"];
12+
type = enum ["inherit" "default" "none" "super-tab" "enter" "cmdline"];
1313
default = "none";
1414
description = "keymap presets";
1515
};

0 commit comments

Comments
 (0)