From bbf79ebb5ef17f68ba5b1a545bf08d811c10a050 Mon Sep 17 00:00:00 2001 From: Wojciech Nagrodzki <278594+wnagrodzki@users.noreply.github.com> Date: Thu, 23 Apr 2020 07:30:59 +0200 Subject: [PATCH] =?UTF-8?q?Add=20palette=20commands:=20Open=20Repository?= =?UTF-8?q?=20in=20Finder,=20Open=20.gitignore=20in=20Editor=E2=80=A6,=20O?= =?UTF-8?q?pen=20Repository=20in=20Terminal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Default.sublime-commands | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Default.sublime-commands diff --git a/Default.sublime-commands b/Default.sublime-commands new file mode 100644 index 0000000..10d03a2 --- /dev/null +++ b/Default.sublime-commands @@ -0,0 +1,25 @@ +[ + { + "caption": "Open Repository in Finder", + "command": "open_dir", + "args": { + "dir": "$working_dir" + } + }, + { + "caption": "Open .gitignore in Editor…", + "command": "open_in_editor", + "args": + { + "path": "${working_dir}/.gitignore", + "default": "" + } + }, + { + "caption": "Open Repository in Terminal", + "command": "git", + "args": { + "argv": ["openterminalatpath", "$working_dir"] + } + } +] \ No newline at end of file