diff options
author | Blaž Hrastnik | 2023-03-14 02:56:18 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2023-03-14 02:56:18 +0000 |
commit | 75ebc1fcbca48a344f128260cdb9db42fd0fcbc6 (patch) | |
tree | 9361ac836504b34e59438cc2a9e0c88eacd29539 /helix-term | |
parent | 27aa919f1c5ce9bbee899d492f3b026a90fba27a (diff) |
fix compilation
Diffstat (limited to 'helix-term')
-rw-r--r-- | helix-term/src/commands/typed.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/commands/typed.rs b/helix-term/src/commands/typed.rs index ae4163fa..6fbdc0d7 100644 --- a/helix-term/src/commands/typed.rs +++ b/helix-term/src/commands/typed.rs @@ -2503,7 +2503,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ aliases: &[], doc: "Stops the Language Server that is in use by the current doc", fun: lsp_stop, - completer: None, + signature: CommandSignature::none(), }, TypableCommand { name: "tree-sitter-scopes", @@ -2693,7 +2693,7 @@ pub const TYPABLE_COMMAND_LIST: &[TypableCommand] = &[ aliases: &["diffget", "diffg"], doc: "Reset the diff change at the cursor position.", fun: reset_diff_change, - completer: None, + signature: CommandSignature::none(), }, ]; |