1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
|
% taskwarrior-tui(1)
<!-- This is the taskwarrior-tui(1) man page, written in Markdown. -->
<!-- To generate the roff version, run `just man`, -->
<!-- and the man page will appear in the ‘target’ directory. -->
NAME
====
taskwarrior-tui — A terminal user interface for taskwarrior (https://github.com/kdheepak/taskwarrior-tui)
SYNOPSIS
========
`taskwarrior-tui`
**`taskwarrior-tui`** is a terminal user interface for `taskwarrior`.
EXAMPLES
========
`taskwarrior-tui`
: Starts a terminal user interface for `taskwarrior`.
`alias tt=taskwarrior-tui`
: Add the above to your dotfiles to use `tt` to start `taskwarrior-tui`.
KEYBINDINGS
===========
Keybindings:
`Esc`
: Exit current action
`]`
: Next view - Go to next view
`[`
: Previous view - Go to previous view
Keybindings for task report:
`/`
: task {string} - Filter task report
`a`
: task add {string} - Add new task
`d`
: task {selected} done - Mark task as done
`e`
: task {selected} edit - Open selected task in editor
`j`
: {selected+=1} - Move down in task report
`k`
: {selected-=1} - Move up in task report
`J`
: {selected+=pageheight} - Move page down in task report
`K`
: {selected-=pageheight} - Move page up in task report
`g`
: {selected=first} - Go to top
`G`
: {selected=last} - Go to bottom
`l`
: task log {string} - Log new task
`m`
: task {selected} modify {string} - Modify selected task
`q`
: exit - Quit
`s`
: task {selected} start/stop - Toggle start and stop
`t`
: task {selected} +{tag}/-{tag} - Toggle {uda.taskwarrior-tui.quick-tag.name} (default: `next`)
`u`
: task undo - Undo
`v`
: {toggle mark on selected} - Toggle mark on selected
`V`
: {toggle marks on all tasks} - Toggle marks on all tasks in current filter report
`x`
: task delete {selected} - Delete
`z`
: toggle task info - Toggle task info view
`A`
: task {selected} annotate {string} - Annotate current task
Ctrl-e
: scroll down task details - Scroll task details view down one line
Ctrl-y
: scroll up task details - Scroll task details view up one line
`!`
: {string} - Custom shell command
`1-9`
: {string} - Run user defined shortcuts
`:`
: {task id} - Jump to task id
`c`
: context switcher menu - Open context switcher menu
`R`
: report switcher menu - Open report switcher menu
`?`
: help - Help menu
Keybindings for filter / command prompt:
`Ctrl + f | Right`
: move forward - Move forward one character
`Ctrl + b | Left`
: move backward - Move backward one character
`Ctrl + h | Backspace`
: backspace - Delete one character back
`Ctrl + d | Delete`
: delete - Delete one character forward
`Ctrl + a | Home`
: home - Go to the beginning of line
`Ctrl + e | End`
: end - Go to the end of line
`Ctrl + k`
: delete to end - Delete to the end of line
`Ctrl + u`
: delete to beginning - Delete to the beginning of line
`Ctrl + w`
: delete previous word - Delete previous word
`Alt + d`
: delete next word - Delete next word
`Alt + b`
: move to previous word - Move to previous word
`Alt + f`
: move to next word - Move to next word
`Alt + t`
: transpose words - Transpose words
`Up`
: scroll history - Go backward in history matching from beginning of line to cursor
`Down`
: scroll history - Go forward in history matching from beginning of line to cursor
`TAB | Ctrl + n`
: tab complete - Open tab completion and selection first element OR cycle to next element
`BACKTAB | Ctrl + p`
: tab complete - Cycle to previous element
Keybindings for context switcher:
`j`
: {selected+=1} - Move forward a context
`k`
: {selected-=1} - Move back a context
Keybindings for report switcher:
`j`
: {selected+=1} - Move forward a report
`k`
: {selected-=1} - Move back a report
Keybindings for calendar:
`j`
: {selected+=1} - Move forward a year in calendar
`k`
: {selected-=1} - Move back a year in calendar
`J`
: {selected+=10} - Move forward a decade in calendar
`K`
: {selected-=10} - Move back a decade in calendar
EXIT STATUSES
=============
0
: If everything goes OK.
AUTHOR
======
`taskwarrior-tui` is maintained by Dheepak ‘kdheepak’ Krishnamurthy and other contributors.
**Source code:** `https://github.com/kdheepak/taskwarrior-tui/` \
**Contributors:** `https://github.com/kdheepak/taskwarrior-tui/graphs/contributors`
|