Skip to content

Commit

Permalink
Create Context.sublime-menu
Browse files Browse the repository at this point in the history
Add right-click menu actions for "this file"
  • Loading branch information
curtisgibby committed Feb 28, 2013
1 parent 49ff2b6 commit 26b9701
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Context.sublime-menu
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[
{
"caption": "Git - This File",
"children":
[
{ "caption": "Log", "command": "git_log" }
,{ "caption": "Graph", "command": "git_graph" }
,{ "caption": "-" }
,{ "caption": "Diff", "command": "git_diff" }
,{ "caption": "DiffTool", "command": "git_diff_tool" }
,{ "caption": "-" }
,{ "caption": "Add", "command": "git_add" }
,{ "caption": "Add Selected Hunk", "command": "git_add_selected_hunk" }
,{ "caption": "-" }
,{ "caption": "Reset", "command": "git_reset_head" }
,{ "caption": "Checkout (Discard Changes)", "command": "git_checkout" }
,{ "caption": "-" }
,{ "caption": "Quick Commit", "command": "git_quick_commit" }
,{ "caption": "Commit Selected Hunk", "command": "git_commit_selected_hunk" }
,{ "caption": "-" }
,{ "caption": "Blame", "command": "git_blame" }
,{ "caption": "-" }
,{ "caption": "Toggle Annotations", "command": "git_toggle_annotations" }
]
}
]

0 comments on commit 26b9701

Please sign in to comment.