mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
Show JS/TS References Code Lens for Inner Functions (#84689)
* Show code lens for inner functions * Create typescript.referencesCodeLens.showOnAllFunctions setting * Create javascript.referencesCodeLens.showOnAllFunctions setting * Add a new setting in a existing class * Avoid unnecessary fallthrough
This commit is contained in:
@@ -159,12 +159,24 @@
|
||||
"description": "%javascript.referencesCodeLens.enabled%",
|
||||
"scope": "window"
|
||||
},
|
||||
"javascript.referencesCodeLens.showOnAllFunctions": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%javascript.referencesCodeLens.showOnAllFunctions%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.referencesCodeLens.enabled": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%typescript.referencesCodeLens.enabled%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.referencesCodeLens.showOnAllFunctions": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description": "%typescript.referencesCodeLens.showOnAllFunctions%",
|
||||
"scope": "window"
|
||||
},
|
||||
"typescript.implementationsCodeLens.enabled": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
|
||||
Reference in New Issue
Block a user