Commit 68a0a44c87f63257a03c76bc6eec59276e2f2dd9

Let's support both /usr/bin/mate and /usr/local/bin/mate

Commit diff

config.fish

 
55 set PATH ~/.config/fish/bin $PATH
66end
77
8set -x EDITOR "/usr/local/bin/mate -w"
8# Textmate defaults to /usr/bin/mate, but let's check for /usr/local/bin/mate
9if test -f "/usr/local/bin/mate"
10 set -x EDITOR "/usr/local/bin/mate -w"
11else
12 set -x EDITOR "/usr/bin/mate -w"
13end
14
915set fish_greeting ""
1016
1117function parse_git_branch
5959function sc -d "Run the Rails console"
6060 script/console
6161end
62
toggle raw diff