diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-09-14 10:45:13 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-09-14 10:45:13 +0100 |
commit | 6cf70895100bd7f364f5adf097dfce7d8d1df22e (patch) | |
tree | 4c5dd53872ce871a62cffad3b361dad22d35bffa | |
parent | acfabf1e40497be7d283bfc887d66681833459b1 (diff) |
func shortcut for task
-rw-r--r-- | fish/functions/t.fish | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fish/functions/t.fish b/fish/functions/t.fish new file mode 100644 index 0000000..05d3d6c --- /dev/null +++ b/fish/functions/t.fish @@ -0,0 +1,3 @@ +function t --wraps=task --description 'alias t=task' + task $argv; +end |