Skip to content

Commit

Permalink
Removed "context" from the menu since that's managed in is_enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
quarnster committed Jan 18, 2012
1 parent c3c4a70 commit 984a234
Showing 1 changed file with 5 additions and 21 deletions.
26 changes: 5 additions & 21 deletions Context.sublime-menu
Original file line number Diff line number Diff line change
@@ -1,25 +1,9 @@
[
{ "caption": "-", "id": "breakpoints" },
{ "command": "gdb_toggle_breakpoint", "caption": "Toggle Breakpoint" },
{ "command": "gdb_launch", "caption": "Run", "context": [{"key": "gdb_running", "operator": "equal", "operand": false}]},
{
"command": "gdb_continue",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"caption": "Continue"
},
{
"command": "gdb_step_over",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"caption": "Step Over"
},
{
"command": "gdb_step_into",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"caption": "Step Into"
},
{
"command": "gdb_step_out",
"context": [{"key": "gdb_running", "operator": "equal", "operand": true}],
"caption": "Step Out"
}
{ "command": "gdb_launch", "caption": "Run"},
{ "command": "gdb_continue", "caption": "Continue" },
{ "command": "gdb_step_over", "caption": "Step Over" },
{ "command": "gdb_step_into", "caption": "Step Into" },
{ "command": "gdb_step_out", "caption": "Step Out" }
]

0 comments on commit 984a234

Please sign in to comment.