You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HalpTask uses native Vim keybindings combined with well-known Leader Key (<space>) shortcuts.
🚀 Leader Key Menu (<space>)
Pressing <space> or pressing the first key of any multi-character command (such as o, d, z, g, w, f) opens the interactive WhichKey popup window at the bottom of your screen. As you press subsequent keys, the popup dynamically updates to show available options and completion choices.
┌ Space (Leader Menu) ─────────────────────────────────────────────────────────┐
│ b +bullets │ t +tasks │ z +folds │ e +encrypt │ w save │
│ / search │ ? help │ q quit │ │
└──────────────────────────────────────────────────────────────────────────────┘
1. Bullets Menu (<space> b ...)
Shortcut
Description
Detail
<space> b n
New bullet below
Creates a bullet point directly below current selection
<space> b N
New bullet above
Creates a bullet point directly above current selection
<space> b c
Add child bullet
Creates a sub-bullet as a child of current selection
<space> b e
Edit text
Edits current bullet point text in inline insert mode
<space> b d
Delete bullet
Deletes current bullet point and all its sub-bullets
<space> b i
Indent bullet
Demotes bullet to become child of preceding sibling (Tab)
<space> b o
Unindent bullet
Promotes bullet up one hierarchy level (Shift+Tab)
<space> b j
Move down
Swaps position with next sibling
<space> b k
Move up
Swaps position with previous sibling
<space> b t
Toggle task
Converts bullet into task or cycles task status
2. Task Menu (<space> t ...)
Shortcut
Visual Indicator
Status Description
<space> t t
[ ] / •
Toggle between plain bullet • and task [ ]
<space> t c
[ ] ➔ [~] ➔ [x]
Cycle status (Todo ➔ In-Progress ➔ Done ➔ Todo)
<space> t s
[ ]
Mark as Todo (Gray empty checkbox)
<space> t p
[~]
Mark as In Progress (Orange ~ indicator)
<space> t d
[x]
Mark as Done (Green X, faint strikethrough text)
Esc / q / fo / tf
🎯
Exit / Toggle Current Focus Task & display top Focus Banner
<space> t a
🏷️
Open Tag / Label Manager overlay
<space> n / <space> t n
📝
Open / Edit Task Markdown Note modal
<space> t D / D
⏰
Open Set / Edit Due Date prompt
3. Agenda & Archive Menu (<space> a ...)
Shortcut
Action
Description
<space> a g / A
Agenda View
Open interactive Agenda & Schedule View modal
<space> a a
Archive Selected
Archives selected bullet/task and its entire subtree
<space> a c
Archive Completed
Sweeps and archives all completed [x] tasks
<space> a v / a r
Archive Browser
Open interactive Archive View modal to filter, restore, or delete
4. Fold Menu (<space> z ...)
Shortcut
Action
Description
<space> z c
Close Fold
Collapses sub-bullets of selected node
<space> z o
Open Fold
Expands sub-bullets of selected node
<space> z a
Toggle Fold
Toggles fold state of selected node
<space> z M
Close All Folds
Folds every nested node across entire document
<space> z R
Open All Folds
Unfolds every node across entire document
4. Configuration Menu (<space> c ...)
Shortcut
Command
Description
<space> c c
Config Dashboard
Open interactive, keyboard-navigable configuration modal
<space> c a
Toggle Auto-Save
Turn background auto-save on/off
<space> c d
Toggle Default Item
Switch default creation node type (bullet <-> task)
Launch $EDITOR on ~/.config/halptask/config.yaml with auto-reload
5. Encryption & System (<space> e ..., <space> w, <space> q)
Shortcut
Action
Description
<space> e e
Toggle Encryption
Toggle AES-256-GCM encryption on file save
<space> e p
Set Passphrase
Set or change file encryption passphrase
<space> w
Save
Save current document to disk
<space> s
Save
Save current document to disk
<space> /
Search
Open search input filter bar
<space> ?
Help Modal
Display on-screen keybindings cheat sheet
<space> q
Quit
Save and exit HalpTask
🎯 Direct Normal Mode Keybindings
You can also use single or double-character Vim motions directly without pressing <space>.
Note
Single-Key Efficiency: Single t in Normal Mode provides lightning-fast 1-keypress task toggling and cycling (• ➔ [ ] ➔ [~] ➔ [x]). Explicit task statuses ([x] Done, [~] In-Progress, [ ] Todo) are accessible via the Leader key menu (<space> t d, <space> t p, <space> t s).
Motion & Navigation
Key
Description
j or ↓
Move selection cursor down
k or ↑
Move selection cursor up
h or ←
Close fold / Jump to parent node
l or →
Open fold / Jump to first child node
gg
Jump to top of document
G
Jump to bottom of document
ff
Zoom / Hoist focused subtree
Editing & Tree Manipulation
Key
Action
oo
Create new bullet below and enter insert mode
oc
Create new child bullet (subtask) and enter insert mode
O
Create new bullet above and enter insert mode
i / a / e
Edit text of selected bullet
c
Clear line text & enter insert mode
dd / x
Delete selected bullet and its children
Tab or >
Indent selected bullet (make child)
Shift+Tab or <
Unindent selected bullet (make sibling of parent)
J
Move bullet down among siblings
K
Move bullet up among siblings
t
Toggle bullet into task / Cycle task status
D
Open Set / Edit Due Date prompt
A
Open Agenda & Schedule View modal
T
Open Tag / Label Manager overlay
N
Open / Edit Task Markdown Note modal
fc
Toggle hide/show [x] completed tasks
da
Delete all [x] completed tasks
ww
Quick save file to disk
u
Undo last modification
Ctrl+r
Redo last modification
⏰ Due Dates, Deadlines & Natural Language Scheduling
HalpTask provides first-class temporal task scheduling with intuitive natural language support.
1. Attaching Due Dates
Inline during Task Writing: Type due:<when> or @due(<when>) anywhere in your task line (e.g. Prepare slides due:tomorrow #work). HalpTask extracts the date into structured metadata and cleans the title automatically.
Interactive Prompt (D or <space> t D): Highlight any task and press D to open the quick setter prompt.
2. Supported Natural Language Date Formats:
today, tdy: Sets deadline to end of current day.
tomorrow, tmrw: Sets deadline to tomorrow.
yesterday, ydy: Sets deadline to yesterday (for logging past work).
2026-08-25, 08/25, Aug 25: Explicit ISO and calendar date formats.
3. Visual Urgency Badges:
🔴 [Overdue: 2d]: Bold Red alert for passed deadlines on incomplete tasks.
🟡 [Due Today]: Amber warning for tasks due today.
🔵 [Due: Tomorrow] / [Due: Fri]: Subtle cyan info for upcoming deadlines.
🏁 [Due: Aug 25]: Muted gray styling on completed ([x]) tasks.
4. Interactive Agenda & Schedule View (<space> a g / A):
Displays a dedicated categorized modal grouping tasks into OVERDUE, DUE TODAY, THIS WEEK, UPCOMING, and COMPLETED.
Use j/k to navigate, t/x/Space to cycle task statuses directly, D to edit/clear due dates, / to filter, and Enter to jump directly to that task in your tree outliner!
🏷️ Task Tags & Labels
HalpTask supports rich tag management with emojis and customizable colors.
Key Features & Rules:
Direct Tags: Assigned explicitly to a task (T or <space> t a). Persisted as #tagname in markdown files. Rendered as [🐛 bug].
Inherited Tags: Dynamically inherited from parent tasks down the subtree. Rendered with an inherited indicator [↖🔥 urgent].
Subtask Movement Rules:
Moving a subtask out of a parent (Shift+Tab / move out) automatically removes inherited parent tags. Direct tags remain untouched.
Moving a subtask into a parent (Tab / move in) dynamically inherits the new parent's tags.
Tag Creation Wizard: Press n inside the Tag Overlay (T) to create custom tags with custom emojis and a 12-color ANSI palette.
Fold Shortcuts
Key
Action
Enter / za
Toggle fold
zc
Close fold
zo
Open fold
zM
Close all folds in document
zR
Open all folds in document
🔍 Search Mode (/)
Press / or <space> / to open the search bar at the bottom.
Type your search query. Matching items will be highlighted in orange.
Cursor automatically moves to the first match.
Press Enter or Esc to exit search mode while keeping highlights.
🔒 Encryption Details
When encryption is enabled:
Data files start with the header # HALPTASK-ENCRYPTED-v1.
Content is encrypted using AES-256-GCM with PBKDF2 key derivation (100,000 iterations).
Upon opening an encrypted file, HalpTask prompts for your secret passphrase before rendering the TUI.