Skip to content

Commit

Permalink
fix: remove when clauses in keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Jul 20, 2023
1 parent 6513022 commit 26c1748
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,28 +154,23 @@
},
{
"command": "openai-forge.addOrRemoveCurrentDocument",
"key": "alt+f alt+a",
"when": "editorTextFocus"
"key": "alt+f alt+a"
},
{
"command": "openai-forge.evaluateAndSendCurrentDocumentOrStack",
"key": "alt+f e",
"when": "editorTextFocus"
"key": "alt+f e"
},
{
"command": "openai-forge.evaluateAndSendCurrentDocumentOrStack",
"key": "alt+f alt+e",
"when": "editorTextFocus"
"key": "alt+f alt+e"
},
{
"command": "openai-forge.sendCurrentDocument",
"key": "alt+f s",
"when": "editorTextFocus"
"key": "alt+f s"
},
{
"command": "openai-forge.sendCurrentDocument",
"key": "alt+f alt+s",
"when": "editorTextFocus"
"key": "alt+f alt+s"
}
]
},
Expand Down

0 comments on commit 26c1748

Please sign in to comment.