parent
bd4a581f3e
commit
f7c3d2c040
1 changed files with 32 additions and 0 deletions
32
shell/zsh
Normal file
32
shell/zsh
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
function __tas_task_idx() {
|
||||||
|
echo "$@" | sed 's/^\([0-9]\+\)\..\+$/\1/'
|
||||||
|
}
|
||||||
|
|
||||||
|
function __tas_show() {
|
||||||
|
tas show $(__tas_task_idx "$@")
|
||||||
|
}
|
||||||
|
|
||||||
|
function __tas_start() {
|
||||||
|
tas start $(__tas_task_idx "$@")
|
||||||
|
}
|
||||||
|
|
||||||
|
function __tas_list() {
|
||||||
|
tas list | fzf --info=inline --height=50% --no-sort --keep-right --layout=reverse
|
||||||
|
}
|
||||||
|
|
||||||
|
function taz() {
|
||||||
|
case $1 in
|
||||||
|
"" | "show" | "sh")
|
||||||
|
__tas_show $(__tas_list)
|
||||||
|
;;
|
||||||
|
|
||||||
|
"list" | "ls")
|
||||||
|
__tas_list
|
||||||
|
;;
|
||||||
|
|
||||||
|
"start" | "st")
|
||||||
|
__tas_start $(__tas_list)
|
||||||
|
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue