Skip to content

Commit

Permalink
Added highlight all menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Monnoroch committed Mar 30, 2014
1 parent ec9c979 commit 370f058
Showing 1 changed file with 45 additions and 2 deletions.
47 changes: 45 additions & 2 deletions Main.sublime-menu
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"caption": "Disable",
"command": "ch_set_setting",
"args": {"setting": "enabled", "value": false},
"mnemonic": "D"
"mnemonic": "E"
},
{
"caption": "Highlite style",
"caption": "Highlit style",
"mnemonic": "S",
"children":
[
Expand Down Expand Up @@ -51,6 +51,49 @@
}
]
},
{
"caption": "Highlit all",
"command": "ch_set_setting",
"args": {"setting": "highlight_all", "value": true},
"mnemonic": "A"
},
{
"caption": "Do not highlit all",
"command": "ch_set_setting",
"args": {"setting": "highlight_all", "value": false},
"mnemonic": "A"
},
{
"caption": "Highlit all style",
"children":
[
{
"caption": "Filled",
"command": "ch_set_setting",
"args": {"setting": "ha_style", "value": "filled"}
},
{
"caption": "Outlined",
"command": "ch_set_setting",
"args": {"setting": "ha_style", "value": "outlined"}
},
{
"caption": "Underlined (solid)",
"command": "ch_set_setting",
"args": {"setting": "ha_style", "value": "underlined_solid"}
},
{
"caption": "Underlined (strippled)",
"command": "ch_set_setting",
"args": {"setting": "ha_style", "value": "underlined_strippled"}
},
{
"caption": "Underlined (squiggly)",
"command": "ch_set_setting",
"args": {"setting": "ha_style", "value": "underlined_squiggly"}
}
]
},
{
"caption": "Restore color scheme",
"command": "restore_color_scheme",
Expand Down

0 comments on commit 370f058

Please sign in to comment.