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/docs/Choices/CaptureChoice.md
+69-1Lines changed: 69 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ If you have a tag called `#people`, and you type `#people` in the _Capture To_ f
48
48
-_Create file if it doesn't exist_ will do as the name implies - you can also create the file from a template, if you specify the template (the input box will appear below the setting).
49
49
-_Task_ will format your captured text as a task.
50
50
-_Use editor selection as default value_ controls whether the current editor selection is used as `{{VALUE}}`. Choose **Follow global setting**, **Use selection**, or **Ignore selection** (global default lives in Settings > Input). This does not affect `{{SELECTED}}`.
51
-
-_Write to bottom of file_ will put whatever you enter at the bottom of the file.
51
+
-_Write position_ controls where Capture writes: top, bottom, after line, and active-file cursor modes.
52
52
-_Append link_ will append a link to the file you have open in the file you're capturing to. You can choose between three modes:
53
53
-**Enabled (requires active file)** – keeps the legacy behavior and throws an error if no note is focused
54
54
-**Enabled (skip if no active file)** – inserts the link when possible and silently drops `{{LINKCURRENT}}` if nothing is open
@@ -60,6 +60,74 @@ If you have a tag called `#people`, and you type `#people` in the _Capture To_ f
60
60
-**End of line** - Places the link at the end of the current line
61
61
-**New line** - Places the link on a new line below the cursor
62
62
63
+
## Canvas Capture Notes
64
+
65
+
QuickAdd supports two Canvas capture workflows:
66
+
67
+
- Capture to one selected card in the active Canvas view
68
+
- Capture to a specific card in a specific `.canvas` file
69
+
70
+
### 1) Capture to selected card in active Canvas
71
+
72
+
This mode is enabled when **Capture to active file** is on and the active leaf
73
+
is a Canvas.
74
+
75
+
Supported card targets:
76
+
77
+
- Text cards
78
+
- File cards that point to markdown files
79
+
80
+
### 2) Capture to specific card in specific `.canvas` file
81
+
82
+
This mode is enabled when **Capture to active file** is off, the capture path
83
+
resolves to a `.canvas` file, and **Target canvas node** is set.
84
+
85
+
When the capture path is a `.canvas` file, QuickAdd shows a node picker that
86
+
helps you choose a node id directly from that board.
87
+
88
+
### Write position support in Canvas
89
+
90
+
- Text cards support: **Top of file**, **Bottom of file**, **After line...**
91
+
- File cards (markdown targets) support: **Top of file**, **Bottom of file**, **After line...**
92
+
- Canvas does not support cursor-based modes: **At cursor**, **New line above cursor**, **New line below cursor**
93
+
94
+
If **Capture to active file** is enabled and you leave the default write
95
+
position at **At cursor**, capture will abort in Canvas until you switch to a
96
+
supported mode.
97
+
98
+
Canvas capture requires exactly one selected card in selected-card mode. If the
99
+
selection is missing, multi-select, or unsupported, QuickAdd aborts with a
100
+
notice instead of writing to the wrong place.
101
+
102
+
A dedicated Canvas walkthrough page will return in a future update.
103
+
104
+
### Canvas Capture FAQ
105
+
106
+
**Why did my capture abort in Canvas?**
107
+
108
+
Most often one of these is true:
109
+
110
+
- No card is selected
111
+
- More than one card is selected
112
+
- The selected card type is unsupported
113
+
- The selected write mode is cursor-based
114
+
115
+
**Can I target a specific card in a Canvas file?**
116
+
117
+
Yes. Set capture path to a `.canvas` file and choose a **Target canvas node**.
118
+
119
+
**Does "At cursor" work in Canvas cards?**
120
+
121
+
No. Use top, bottom, or insert-after placement.
122
+
123
+
**Can I capture to a file card that points to a Canvas file?**
0 commit comments