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
Copy file name to clipboardExpand all lines: DOCS.md
+39-6Lines changed: 39 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,11 @@
9
9
1.[Global mappings](#global-mappings)
10
10
2.[Agenda mappings](#agenda-mappings)
11
11
3.[Capture mappings](#capture-mappings)
12
-
4.[Org mappings](#org-mappings)
13
-
5.[Edit Src mappings](#edit-src)
14
-
6.[Text objects](#text-objects)
15
-
7.[Dot repeat](#dot-repeat)
12
+
4.[Note mappings](#note-mappings)
13
+
5.[Org mappings](#org-mappings)
14
+
6.[Edit Src mappings](#edit-src)
15
+
7.[Text objects](#text-objects)
16
+
8.[Dot repeat](#dot-repeat)
16
17
4.[Document Diagnostics](#document-diagnostics)
17
18
5.[Tables](#tables)
18
19
6.[Hyperlinks](#hyperlinks)
@@ -209,8 +210,10 @@ Marker used to indicate a folded headline.
209
210
#### **org_log_done**
210
211
*type*: `string|nil`<br />
211
212
*default value*: `time`<br />
212
-
When set to `time`(default), adds `CLOSED` date when marking headline as done.<br />
213
-
When set to `false`, it is disabled.
213
+
Possible values:
214
+
*`time` - adds `CLOSED` date when marking headline as done
215
+
*`note` - adds `CLOSED` date as above, and prompts for closing note via capture window. Confirm note with `org_note_finalize` (Default `<C-c>`), or ignore providing note via `org_note_kill` (Default `<Leader>ok`)
216
+
*`nil|false` - Disable any logging
214
217
215
218
#### **org_highlight_latex_and_related**
216
219
*type*: `string|nil`<br />
@@ -709,6 +712,36 @@ require('orgmode').setup({
709
712
})
710
713
```
711
714
715
+
### Closing note mappings
716
+
717
+
Mappings used in closing note window.
718
+
719
+
#### **org_note_finalize**
720
+
*mapped to*: `<C-c>`<br />
721
+
Save note window content as closing note for a headline. Ignores first comment (if exists)
722
+
#### **org_note_kill**
723
+
*mapped to*: `<Leader>ok`<br />
724
+
Close note window without saving anything
725
+
#### **org_capture_show_help**
726
+
*mapped to*: `g?`<br />
727
+
Show help popup with mappings
728
+
729
+
These mappings live under `mappings.capture`, and can be changed like this:
0 commit comments