diff options
author | Jersey Fonseca <fonseca@uchicago.edu> | 2020-06-25 00:44:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 00:44:39 +0000 |
commit | 3b24c57ef433b79f24af8ae6ae4b7466bb89c483 (patch) | |
tree | 10c7412075bf0b5838d6556d76d345046c964cfd /doc | |
parent | 9c3df779c9355086819c7abf0641827ae242f169 (diff) | |
parent | e126e779aefb5e6b1144a9f27d7f373595db2fb4 (diff) |
Merge pull request #1 from ahmedselim2017/master
Added variables for cache file and mappings
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bujo.txt | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/doc/bujo.txt b/doc/bujo.txt index c74d128..74af942 100644 --- a/doc/bujo.txt +++ b/doc/bujo.txt | |||
@@ -34,12 +34,17 @@ very simple and minimialist. | |||
34 | *bujo-features* | 34 | *bujo-features* |
35 | 2. Features~ | 35 | 2. Features~ |
36 | 36 | ||
37 | * Conveniently open your todo list in vim | 37 | * Run: |
38 | - Run :Todo | 38 | :Todo |
39 | * Easily insert a new task | 39 | * Insert a new task: |
40 | - Press <Ctrl-Enter> | 40 | nmap <C-Enter> <Plug>bujo#AddTodoNormal |
41 | * Easily check off a task | 41 | imap <C-Enter> <Plug>bujo#AddTodoInsert |
42 | - Press <Ctrl-Backspace> | 42 | * Check off a task: |
43 | nmap <C-BS> <Plug>bujo#CheckTodoNormal | ||
44 | imap <C-BS> <Plug>bujo#CheckTodoInsert | ||
45 | * Change cache directory: | ||
46 | let g:bujo#todo_file_path = $HOME . "/.cache/bujo" | ||
47 | |||
43 | 48 | ||
44 | ======================================================= | 49 | ======================================================= |
45 | *bujo-notes* | 50 | *bujo-notes* |