this string has no description
ws2_help.md
edited
1you can select tasks by:
2 - single-clicking using the mouse
3 - using the arrow keys
4 - or vim movement keys (j/k)
5
6you can undo/redo using familiar keys:
7 - `Ctrl-Z` or `u` undo the last action
8 - `Ctrl-Shift-Z` or `U` redo
9
10currently, the undo stack does not persist across page loads, and the undo stack is only displayed in the developer console.
11
12---
13
14you can change a task's summary/name by double-clicking on it or with vim editing commands:
15 - `i`/`I` to enter edit mode with the cursor at the start
16 - `A` to enter edit mode with the cursor at the end
17 - `S` to enter edit mode with the full summary selected
18
19all of these put you into \"insert mode\". to leave insert mode, either click away from the editing to de-focus the text field, or press `Escape` or `Ctrl-[`.
20
21you can add new tasks with these key commands:
22 - `o` adds a new task after the selected task, ignoring the task's children.
23 - `O` adds a new task before the selected task.
24 - `Enter` adds a new task after the selected task.
25 if the selected task already has children, the new task will be the new first child.
26 - `Alt-Enter` adds a new task as a child of the selected task.
27
28note that `Enter` and `Alt-Enter` both work while you're editing a task summary! this means that you can easily add a bunch of tasks in one go - just keep pressing `Enter`!
29
30if you press `Backspace` or leave insert mode while a new task has an empty summary, the new task will be deleted. you can also delete the selected task by pressing `Delete` or `Shift-Backspace`.
31
32you can manage tasks with these keys:
33 - `J` moves the selected task up
34 - `K` moves the selected task down
35 - `Tab` nests the selected task in as a child of its sibling (it \"indents\")
36 - `Shift-Tab` un-nests the selected task (it \"un-indents\")
37 - `-` hides a task's children
38 - `=` shows a task's children
39 - `.` marks a task done
40 - `,` marks a task un-done
41
42you can change a task's exposition/description by double-clicking on it or pressing `Shift+Enter` with this task selected. markdown is supported both in the summary and exposition!
43
44you can change a task's points with `Shift-[1-9]` or set it to 0 points with `Shift-0`.
45
46---
47
48you can change the task list view with the following keys:
49 - `1` displays the task list
50 - `2` displays a kanban board for re-arranging
51 - `3` displays the current sprint board