diff --git a/Default.sublime-keymap b/Default.sublime-keymap index 24ffcc36e..74c689493 100644 --- a/Default.sublime-keymap +++ b/Default.sublime-keymap @@ -23,6 +23,12 @@ "command": "lsp_commit_inline_completion", "context": [{"key": "lsp.inline_completion_visible"}] }, + // Show next Inline Completion + // { + // "keys": ["UNBOUND"], + // "command": "lsp_next_inline_completion", + // "context": [{"key": "lsp.inline_completion_visible"}] + // }, // Save all open files that have a language server attached with lsp_save // { // "keys": ["UNBOUND"], diff --git a/boot.py b/boot.py index 60508e663..774abd9cd 100644 --- a/boot.py +++ b/boot.py @@ -126,6 +126,7 @@ "LspInlayHintClickCommand", "LspInlineCompletionCommand", "LspNextDiagnosticCommand", + "LspNextInlineCompletionCommand", "LspOnDoubleClickCommand", "LspOpenLinkCommand", "LspOpenLocationCommand",