From 8eea0b429fc162826731a35160b29fa99bc77d0b Mon Sep 17 00:00:00 2001 From: versecafe <147033096+versecafe@users.noreply.github.com> Date: Thu, 5 Feb 2026 15:33:18 -0800 Subject: [PATCH] ux: Fix conflict on edit prediction + lsp prediction --- package.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/package.json b/package.json index 7d799ca..b45da77 100644 --- a/package.json +++ b/package.json @@ -70,10 +70,35 @@ "key": "tab", "when": "editorTextFocus && sweep.hasJumpEdit && !editorHasSelection && !inlineSuggestionVisible && !suggestWidgetVisible" }, + { + "command": "sweep.acceptJumpEdit", + "key": "alt+tab", + "when": "editorTextFocus && sweep.hasJumpEdit && !editorHasSelection" + }, + { + "command": "sweep.acceptJumpEdit", + "key": "alt+l", + "when": "isLinux && editorTextFocus && sweep.hasJumpEdit && !editorHasSelection" + }, { "command": "sweep.dismissJumpEdit", "key": "escape", "when": "editorTextFocus && sweep.hasJumpEdit" + }, + { + "command": "editor.action.inlineSuggest.commit", + "key": "alt+tab", + "when": "editorTextFocus && inlineSuggestionVisible && suggestWidgetVisible && !editorHasSelection && !sweep.hasJumpEdit && !inSnippetMode" + }, + { + "command": "editor.action.inlineSuggest.commit", + "key": "alt+l", + "when": "isLinux && editorTextFocus && inlineSuggestionVisible && suggestWidgetVisible && !editorHasSelection && !sweep.hasJumpEdit && !inSnippetMode" + }, + { + "command": "editor.action.inlineSuggest.hide", + "key": "escape", + "when": "editorTextFocus && inlineSuggestionVisible && !suggestWidgetVisible && !sweep.hasJumpEdit" } ], "configuration": {