aboutsummaryrefslogtreecommitdiff
path: root/lib/todos.ml
diff options
context:
space:
mode:
authorMarc Coquand <marc@mccd.space>2024-05-16 09:29:19 -0500
committerMarc Coquand <marc@mccd.space>2024-05-16 09:29:19 -0500
commita9b8ac50daf0cd28034c310dc1cda07ba9a2fc0c (patch)
tree1d381e5c18ad379b2eee62e6bc0f507e3508813e /lib/todos.ml
parente57d29c39da80f9ef9cb68a9322ad2c4254f2d80 (diff)
downloadstitch-a9b8ac50daf0cd28034c310dc1cda07ba9a2fc0c.tar.gz
stitch-a9b8ac50daf0cd28034c310dc1cda07ba9a2fc0c.tar.bz2
stitch-a9b8ac50daf0cd28034c310dc1cda07ba9a2fc0c.zip
Document environment variables
Diffstat (limited to 'lib/todos.ml')
-rw-r--r--lib/todos.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/todos.ml b/lib/todos.ml
index 5d16740..54a0d95 100644
--- a/lib/todos.ml
+++ b/lib/todos.ml
@@ -113,7 +113,7 @@ let rec render
Input_prompt.render t input_state
| `Key (`ASCII 'j', []) | `Key (`ASCII 'N', [ `Ctrl ]) -> scroll_down ()
| `Key (`ASCII 'k', []) | `Key (`ASCII 'P', [ `Ctrl ]) -> scroll_up ()
- | `Key (`ASCII 't', []) ->
+ | `Key (`ASCII 'T', [ `Ctrl ]) ->
let selected_file, _ = Array.get content (y - content_start) in
let _ = Grep.toggle_done selected_file in
let content, content_pretty = load_todos () in