diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-05 08:09:15 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-05 08:09:15 +0000 |
commit | 2010f94f046803ed1bc7765eb10b95d7774dd947 (patch) | |
tree | d0e8964e008f3d5e0bc4e260ae12a9255e64d3f0 /fish2024/functions/_extract_description_from_task.fish | |
parent | a81aec9886635214156c287a44d79a6c05a9dd5c (diff) |
Adds new fish function for extracting the description of a taskwarrior task
Diffstat (limited to '')
-rw-r--r-- | fish2024/functions/_extract_description_from_task.fish | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fish2024/functions/_extract_description_from_task.fish b/fish2024/functions/_extract_description_from_task.fish new file mode 100644 index 0000000..0b82d9d --- /dev/null +++ b/fish2024/functions/_extract_description_from_task.fish @@ -0,0 +1,5 @@ +function _extract_description_from_task --description 'Given a taskwarrior task ID, it returns the description of the task and adds it to clipboard' + set desc (task $argv[1] |grep Description |cut -d' ' -f4-) + echo $desc |xclip + echo $desc +end |