editorFocus doesn't work, might as well also get rid of the other when clauses since there's probably edge cases

This commit is contained in:
2024-02-16 00:46:08 -08:00
parent f9725c4da1
commit 1873d4ae51

View File

@@ -48,20 +48,16 @@
"menus": {
"commandPalette": [
{
"command": "recombobulator.generate-uuid",
"when": "editorFocus"
"command": "recombobulator.generate-uuid"
},
{
"command": "recombobulator.base64",
"when": "editorHasSelection"
"command": "recombobulator.base64"
},
{
"command": "recombobulator.unbase64",
"when": "editorHasSelection"
"command": "recombobulator.unbase64"
},
{
"command": "recombobulator.rot13",
"when": "editorHasSelection"
"command": "recombobulator.rot13"
}
]
}