about summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-12-28 19:38:31 +0100
committerSoispha <soispha@vhack.eu>2023-12-28 19:38:31 +0100
commit8f976d188e74745d778f1056f104a202d4eed973 (patch)
tree45e2b7f8a774906f8ff629f75e735267dcef3e1e /hm
parentfix(hm/pkgs/scr/neorg): Convert context to project before use (diff)
downloadnixos-config-8f976d188e74745d778f1056f104a202d4eed973.tar.gz
nixos-config-8f976d188e74745d778f1056f104a202d4eed973.zip
fix(hm/pkgs/src/neorg/fstart): Fix typo in task filter
Diffstat (limited to 'hm')
-rwxr-xr-xhm/soispha/pkgs/scripts/wrappers/neorg/neorg6
1 files changed, 3 insertions, 3 deletions
diff --git a/hm/soispha/pkgs/scripts/wrappers/neorg/neorg b/hm/soispha/pkgs/scripts/wrappers/neorg/neorg
index 3193ab0a..3fdef9a1 100755
--- a/hm/soispha/pkgs/scripts/wrappers/neorg/neorg
+++ b/hm/soispha/pkgs/scripts/wrappers/neorg/neorg
@@ -222,11 +222,11 @@ ADD_open_taskwarrior_project_file() {
     fi
 }
 # }}}
-# {{{
+# fStart {{{
 FSTART_start_new_task() {
     task_id="$1";
-    # we provided that only one task may be active
-    active="$(task +ACITVE _ids)";
+    # we ensured that only one task may be active
+    active="$(task +ACTIVE _ids)";
     [ "$active" ] && task stop "$active";
     task start "$task_id"
 }