From 1b682853d92a4725a805ab049f01072ed8fd41b3 Mon Sep 17 00:00:00 2001 From: Ziang Song Date: Tue, 21 Jul 2015 10:35:26 -0400 Subject: [PATCH] Adding context menu. --- Context.sublime-menu | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Context.sublime-menu diff --git a/Context.sublime-menu b/Context.sublime-menu new file mode 100644 index 0000000..528c281 --- /dev/null +++ b/Context.sublime-menu @@ -0,0 +1,25 @@ +[ + { + "caption": "-", + "id": "separator" + }, + { + "caption": "Diffy (2 Columns)", + "mnemonic": "d", + "id": "diffy", + "children": + [ + { + "id" : "diffyStart", + "caption" : "Compare", + "command" : "diffy" + }, + { + "id" : "diffyEnd", + "caption": "Clear", + "command": "diffy", + "args": {"action": "clear"} + } + ] + } +] \ No newline at end of file