ADDED fish/functions/flpu.fish Index: fish/functions/flpu.fish ================================================================== --- fish/functions/flpu.fish +++ fish/functions/flpu.fish @@ -0,0 +1,3 @@ +function flpu --wraps='fossil update' + fossil pull && fossil update $argv +end Index: zshrc ================================================================== --- zshrc +++ zshrc @@ -248,10 +248,14 @@ alias flc="fossil changes --differ" fld() { fossil diff -N "$@" | colordiff | less -FRX } + + flpu() { + fossil pull && fossil update "$@" + } flgrep() { local ret=1 fossil changes --all . | sed 's/^.* //' | while read file; do grep -H "$@" "$file" && ret=0