From 6dc8dc25d4bbfa73460623bd7afaac375b547f99 Mon Sep 17 00:00:00 2001 From: Janos Wortmann Date: Fri, 15 Nov 2024 15:20:52 +0100 Subject: [PATCH] Add missed command --- Default.sublime-keymap | 6 ++++++ boot.py | 1 + 2 files changed, 7 insertions(+) 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",