diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-21 22:20:01 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-21 22:20:01 -0700 |
commit | 56a5cb49c51bcdf04ccac1f5ffde345b597c8ea4 (patch) | |
tree | 8391d2f0464134cadb04ed152b92f9eb11d147ec /extension/package.json | |
parent | 287ec48055b86afad2fdd62fdd3f3987077f448b (diff) | |
download | sncontinue-56a5cb49c51bcdf04ccac1f5ffde345b597c8ea4.tar.gz sncontinue-56a5cb49c51bcdf04ccac1f5ffde345b597c8ea4.tar.bz2 sncontinue-56a5cb49c51bcdf04ccac1f5ffde345b597c8ea4.zip |
suggestions...closer?
Diffstat (limited to 'extension/package.json')
-rw-r--r-- | extension/package.json | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/extension/package.json b/extension/package.json index 94a58ebd..a9b8660b 100644 --- a/extension/package.json +++ b/extension/package.json @@ -65,12 +65,48 @@ } } }, - "commands": [], + "commands": [ + { + "command": "continue.suggestionDown", + "category": "Continue", + "title": "Suggestion Down" + }, + { + "command": "continue.suggestionUp", + "category": "Continue", + "title": "Suggestion Up" + }, + { + "command": "continue.acceptSuggestion", + "category": "Continue", + "title": "Accept Suggestion" + }, + { + "command": "continue.rejectSuggestion", + "category": "Continue", + "title": "Reject Suggestion" + } + ], "keybindings": [ { "command": "continue.focusContinueInput", "mac": "cmd+k", "key": "ctrl+k" + }, + { + "command": "continue.suggestionDown", + "mac": "shift+ctrl+down", + "key": "shift+ctrl+down" + }, + { + "command": "continue.suggestionUp", + "mac": "shift+ctrl+up", + "key": "shift+ctrl+up" + }, + { + "command": "continue.acceptSuggestion", + "mac": "shift+ctrl+enter", + "key": "shift+ctrl+enter" } ], "menus": { |