From 6191b7ac0bf3d31f2daca6fd64a293d0e43c1792 Mon Sep 17 00:00:00 2001 From: andfx Date: Sun, 23 Jun 2013 12:07:58 +0200 Subject: [PATCH] Added Sublime menu entry --- Main.sublime-menu | 78 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 Main.sublime-menu diff --git a/Main.sublime-menu b/Main.sublime-menu new file mode 100644 index 0000000..e0f5575 --- /dev/null +++ b/Main.sublime-menu @@ -0,0 +1,78 @@ +[ + { + "caption": "Preferences", + "mnemonic": "n", + "id": "preferences", + "children": + [ + { + "caption": "Package Settings", + "mnemonic": "P", + "id": "package-settings", + "children": + [ + { + "caption": "ColorPicker", + "children": + [ + { + "command": "open_file", + "args": {"file": "${packages}/ColorPicker/README.md"}, + "caption": "README" + }, + { "caption": "-" }, + { + "command": "open_file", + "args": { + "file": "${packages}/ColorPicker/Default (OSX).sublime-keymap", + "platform": "OSX" + }, + "caption": "Key Bindings – Default" + }, + { + "command": "open_file", + "args": { + "file": "${packages}/ColorPicker/Default (Linux).sublime-keymap", + "platform": "Linux" + }, + "caption": "Key Bindings – Default" + }, + { + "command": "open_file", + "args": { + "file": "${packages}/ColorPicker/Default (Windows).sublime-keymap", + "platform": "Windows" + }, + "caption": "Key Bindings – Default" + }, + { + "command": "open_file", + "args": { + "file": "${packages}/User/Default (OSX).sublime-keymap", + "platform": "OSX" + }, + "caption": "Key Bindings – User" + }, + { + "command": "open_file", + "args": { + "file": "${packages}/User/Default (Linux).sublime-keymap", + "platform": "Linux" + }, + "caption": "Key Bindings – User" + }, + { + "command": "open_file", + "args": { + "file": "${packages}/User/Default (Windows).sublime-keymap", + "platform": "Windows" + }, + "caption": "Key Bindings – User" + } + ] + } + ] + } + ] + } +]