We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f56d412 commit 28fc854Copy full SHA for 28fc854
plugins/completion/coq.nix
@@ -27,13 +27,20 @@ in {
27
default = null;
28
description = "Use the recommended keymaps";
29
};
30
+
31
+ alwaysComplete = mkOption {
32
+ type = with types; nullOr bool;
33
+ default = null;
34
+ description = "Always trigger completion on keystroke";
35
+ };
36
37
38
config = let
39
settings = {
40
auto_start = cfg.autoStart;
41
"keymap.recommended" = cfg.recommendedKeymaps;
42
xdg = true;
43
+ "completion.always" = cfg.alwaysComplete;
44
45
in
46
mkIf cfg.enable {
0 commit comments