Skip to content

Commit

Permalink
0.9.6 menu changed, readme fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
qiray committed Jan 31, 2018
1 parent be743d8 commit dea5846
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 52 deletions.
71 changes: 21 additions & 50 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -16,68 +16,39 @@
"children":
[
{
"command": "open_file",
"args": {"file": "${packages}/OpenedFiles/opened_files.sublime-settings"},
"caption": "Settings – Default"
},
{
"command": "open_file",
"args": {"file": "${packages}/User/opened_files.sublime-settings"},
"caption": "Settings – User"
},
{ "caption": "-" },
{
"command": "open_file",
"args": {"file": "${packages}/OpenedFiles/Default.sublime-keymap"},
"caption": "Key Bindings – Default (Common)"
},
{
"command": "open_file",
"args": {
"file": "${packages}/OpenedFiles/Default (OSX).sublime-keymap",
"platform": "OSX"
"command": "edit_settings", "args":
{
"base_file": "${packages}/OpenedFiles/opened_files.sublime-settings",
"default": "${packages}/User/opened_files.sublime-settings"
},
"caption": "Key Bindings – Default (OSX)"
"caption": "Settings"
},
{ "caption": "-" },
{
"command": "open_file",
"args": {
"file": "${packages}/OpenedFiles/Default (Linux).sublime-keymap",
"platform": "Linux"
},
"caption": "Key Bindings – Default (Linux)"
},
{
"command": "open_file",
"args": {
"file": "${packages}/OpenedFiles/Default (Windows).sublime-keymap",
"platform": "Windows"
},
"caption": "Key Bindings – Default (Windows)"
},

{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (OSX).sublime-keymap",
"platform": "OSX"
"command": "edit_settings", "args":
{
"base_file": "${packages}/OpenedFiles/Default (OSX).sublime-keymap",
"default": "${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"
"command": "edit_settings", "args":
{
"base_file": "${packages}/OpenedFiles/Default (Windows).sublime-keymap",
"default": "${packages}/User/Default (Windows).sublime-keymap",
},
"platform": "Windows",
"caption": "Key Bindings – User"
},
{
"command": "open_file",
"args": {
"file": "${packages}/User/Default (Windows).sublime-keymap",
"platform": "Windows"
"command": "edit_settings", "args":
{
"base_file": "${packages}/OpenedFiles/Default (Linux).sublime-keymap",
"default": "${packages}/User/Default (Linux).sublime-keymap",
},
"platform": "Linux",
"caption": "Key Bindings – User"
},
{ "caption": "-" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Or by cloning this repo into your SublimeText Packages directory and rename it t

## Commands and Keybindings

This plugin add <kbd>ctrl+F1</kbd> keybinding for opening a new tab with `Opened files` but you can change it to your binding:
This plugin adds <kbd>ctrl+F1</kbd> (<kbd>super+F1</kbd> for OSX) keybinding for opening a new tab with `Opened files` but you can change it to your binding in your `Key Bindings - User` file:

Format is:

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 9
VERSION_PATCH = 5
VERSION_PATCH = 6

ST3 = int(sublime.version()) >= 3000

Expand Down

0 comments on commit dea5846

Please sign in to comment.