Skip to content

Commit

Permalink
fixed logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ecmel committed Oct 5, 2023
1 parent a03a96a commit 8522693
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@
"command": "kdb.terminal.run",
"key": "ctrl+shift+r",
"mac": "cmd+shift+r",
"when": "editorLangId == q && kdb.QHOME || config.kdb.qHomeDirectory"
"when": "editorLangId == q && (kdb.QHOME || config.kdb.qHomeDirectory)"
}
],
"snippets": [
Expand Down Expand Up @@ -493,7 +493,7 @@
"editor/title": [
{
"command": "kdb.terminal.run",
"when": "resourceLangId == q && kdb.QHOME || config.kdb.qHomeDirectory",
"when": "resourceLangId == q && (kdb.QHOME || config.kdb.qHomeDirectory)",
"group": "navigation"
},
{
Expand All @@ -505,7 +505,7 @@
"editor/context": [
{
"command": "kdb.terminal.run",
"when": "resourceLangId == q && kdb.QHOME || config.kdb.qHomeDirectory",
"when": "resourceLangId == q && (kdb.QHOME || config.kdb.qHomeDirectory)",
"group": "q"
},
{
Expand Down

0 comments on commit 8522693

Please sign in to comment.