From 1873d4ae51e952db8a3267973a61f148d37be7ae Mon Sep 17 00:00:00 2001 From: nyanotech Date: Fri, 16 Feb 2024 00:46:08 -0800 Subject: [PATCH] editorFocus doesn't work, might as well also get rid of the other when clauses since there's probably edge cases --- package.json | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index c2f1fdf..13c2a99 100644 --- a/package.json +++ b/package.json @@ -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" } ] }