mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-23 11:49:38 +00:00
Switch back to repeated contribution
Fixes #125652 When clause using `||` doesn't seem to work here
This commit is contained in:
@@ -1069,7 +1069,22 @@
|
|||||||
"explorer/context": [
|
"explorer/context": [
|
||||||
{
|
{
|
||||||
"command": "typescript.findAllFileReferences",
|
"command": "typescript.findAllFileReferences",
|
||||||
"when": "tsSupportsFileReferences && (resourceLangId == javascript || resourceLangId == javascriptreact || resourceLangId == typescript || resourceLangId == typescriptreact)",
|
"when": "tsSupportsFileReferences && resourceLangId == typescript",
|
||||||
|
"group": "4_search"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "typescript.findAllFileReferences",
|
||||||
|
"when": "tsSupportsFileReferences && resourceLangId == typescriptreact",
|
||||||
|
"group": "4_search"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "typescript.findAllFileReferences",
|
||||||
|
"when": "tsSupportsFileReferences && resourceLangId == javascript",
|
||||||
|
"group": "4_search"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "typescript.findAllFileReferences",
|
||||||
|
"when": "tsSupportsFileReferences && resourceLangId == javascriptreact",
|
||||||
"group": "4_search"
|
"group": "4_search"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user