当未选中文字时,隐藏 [变量转换] 右键菜单
This commit is contained in:
parent
4c51b72892
commit
922407bdb6
@ -209,7 +209,9 @@
|
||||
// 编辑器右键菜单
|
||||
"editor/context": [
|
||||
{
|
||||
"when": "editorTextFocus",
|
||||
// "when": "editorTextFocus",
|
||||
// 2024.12.07 当未选中文字时,隐藏 [变量转换] 右键菜单
|
||||
"when": "editorTextFocus && _textSelectionLength >= 1",
|
||||
"command": "variable-conversion.convertCase",
|
||||
// "group": "1_modification@9"
|
||||
"group": "navigation@9"
|
||||
|
@ -143,7 +143,7 @@
|
||||
"menus": {
|
||||
"editor/context": [
|
||||
{
|
||||
"when": "editorTextFocus",
|
||||
"when": "editorTextFocus && _textSelectionLength >= 1",
|
||||
"command": "variable-conversion.convertCase",
|
||||
"group": "navigation@9"
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user