From 488b660e5282ccc1568bf0a1bf9ba01fe6343913 Mon Sep 17 00:00:00 2001 From: deathaxe Date: Tue, 10 Jan 2023 21:29:31 +0100 Subject: [PATCH] Fix main menu entry 1. Move next to "Switch File" in "Goto" menu 2. Invoke "show_overlay" to open command palette --- Main.sublime-menu | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Main.sublime-menu b/Main.sublime-menu index 9619f16..fe625d9 100644 --- a/Main.sublime-menu +++ b/Main.sublime-menu @@ -1,10 +1,13 @@ [ { - "id": "file", + "id": "goto", "children": [ - { "caption": "-", "id": "window" }, - { "caption": "Switch Window…", "command": "switch_window" } + { + "caption": "Switch Window…", + "command": "show_overlay", + "args": {"overlay": "command_palette", "command": "switch_window"} + } ] }, {