mirror of
https://github.com/wnagrodzki/SublimeMergeToolkit.git
synced 2025-05-03 01:22:41 +02:00
Add palette commands: Open Repository in Finder, Open .gitignore in Editor…, Open Repository in Terminal
This commit is contained in:
parent
f3a26b1aac
commit
bbf79ebb5e
1 changed files with 25 additions and 0 deletions
25
Default.sublime-commands
Normal file
25
Default.sublime-commands
Normal file
|
@ -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"]
|
||||
}
|
||||
}
|
||||
]
|
Loading…
Add table
Reference in a new issue