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