bens-dotfiles/fish/.config/fish/functions/g.fish

11 lines
123 B
Fish
Raw Normal View History

2019-03-18 04:19:48 +00:00
complete -c g -w git
2018-07-22 19:39:58 +00:00
function g
2018-08-11 05:38:12 +00:00
if count $argv > /dev/null
git $argv
else
git status
end
2018-07-22 19:39:58 +00:00
end
2018-08-11 05:38:12 +00:00