I'm using sublime and would like to set it up so that the Git package 'custom command' function can see and use aliases which I've setup in my ~/.gitconfig, which works from my terminal.
In my .gitconfig I have defined an alias:
....
[alias]
open = !git-open diff master
...
When I try entering 'open' in to the command entry prompt for the "Git: custom command" I get the following error:
git-open diff master: git-open: command not found
fatal: While expanding alias 'open': 'git-open diff master': No such file or directory
How can I get the correct functionality?