diff options
author | Matthew Lemon <y@yulqen.org> | 2024-04-06 20:07:28 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-04-06 20:07:28 +0100 |
commit | 00b77312b84d9c6fac6a045982c32b8f1b6d59c7 (patch) | |
tree | 2e53cc7a8d0a21dee96e27ce95af6a35575d2b7f | |
parent | 85dedd869bd883f97184f2de33c38911036bf30b (diff) |
Catching up with fish functions
-rw-r--r-- | fish/functions/k5days.fish | 4 | ||||
-rw-r--r-- | fish/functions/thomeprojects.fish | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/fish/functions/k5days.fish b/fish/functions/k5days.fish new file mode 100644 index 0000000..6552b00 --- /dev/null +++ b/fish/functions/k5days.fish @@ -0,0 +1,4 @@ +function k5days --wraps='khal list today 5 days' --description 'alias k5days khal list today 5 days' + khal list today 5 days $argv + +end diff --git a/fish/functions/thomeprojects.fish b/fish/functions/thomeprojects.fish new file mode 100644 index 0000000..8d6f580 --- /dev/null +++ b/fish/functions/thomeprojects.fish @@ -0,0 +1,4 @@ +function thomeprojects --wraps=task\ _unique\ project\|grep\ \"h\\.\" --description alias\ thomeprojects\ task\ _unique\ project\|grep\ \"h\\.\" + task _unique project|grep "h\." $argv + +end |