diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-06-27 11:43:24 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-27 11:43:24 -0700 |
commit | d62a595812f64408022074c9023eb36a845778ba (patch) | |
tree | a58bfd45a5d7c6fdc47b6007a6dee4bd7ae4bce3 /extension/package.json | |
parent | d2842f655c4d02952d8cf58ec3a2c927704cabae (diff) | |
parent | 67cdb78636e70e9fb10fa3552dbe1134876a599a (diff) | |
download | sncontinue-d62a595812f64408022074c9023eb36a845778ba.tar.gz sncontinue-d62a595812f64408022074c9023eb36a845778ba.tar.bz2 sncontinue-d62a595812f64408022074c9023eb36a845778ba.zip |
Merge pull request #155 from continuedev/newer-simpler-stream-algo
Newer simpler stream algo
Diffstat (limited to 'extension/package.json')
-rw-r--r-- | extension/package.json | 58 |
1 files changed, 57 insertions, 1 deletions
diff --git a/extension/package.json b/extension/package.json index ae55a96b..ceba8698 100644 --- a/extension/package.json +++ b/extension/package.json @@ -65,12 +65,68 @@ } } }, - "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" + }, + { + "command": "continue.acceptAllSuggestions", + "category": "Continue", + "title": "Accept All Suggestions" + }, + { + "command": "continue.rejectAllSuggestions", + "category": "Continue", + "title": "Reject All Suggestions" + } + ], "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" + }, + { + "command": "continue.acceptAllSuggestions", + "mac": "shift+cmd+enter", + "key": "shift+ctrl+enter" + }, + { + "command": "continue.rejectAllSuggestions", + "mac": "shift+cmd+backspace", + "key": "shift+ctrl+backspace" } ], "menus": { |