mirror of https://github.com/bjeanes/dotfiles.git
Misc fish shell function improvements
parent
88e415ba5f
commit
236a3492a8
|
@ -1,4 +1,5 @@
|
|||
function gca
|
||||
gc -a
|
||||
gc -a $argv
|
||||
|
||||
|
||||
end
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
function log
|
||||
tail -f n0 log/*.log
|
||||
tail -fn0 log/*.log
|
||||
|
||||
|
||||
end
|
||||
|
|
|
@ -2,6 +2,7 @@ function m
|
|||
if not test $argv
|
||||
set argv .
|
||||
end
|
||||
mate $argv
|
||||
mate -l 1 $argv
|
||||
|
||||
|
||||
end
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
function migrate
|
||||
rake db:migrate $argv
|
||||
rake db:migrate db:test:clone $argv
|
||||
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue