feat(L03): add Neovim navigation and editing card

This commit is contained in:
user
2026-07-21 17:58:46 +02:00
commit e526b8c6f3
38 changed files with 7113 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euo pipefail
root="${CARD_ROOT:-$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")/.." && pwd)}"; task="${1:?task is required}"
case "$task" in task01_navigation|task02_search_edit_save|task03_undo_redo) ;; *) exit 2 ;; esac
exec env CARD_ROOT="$root" "$root/src/tasks/$task.sh"