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
+66-40Lines changed: 66 additions & 40 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,7 @@ When set to `false`, it is disabled.
215
215
Possible values:
216
216
*`native` - Includes whole latex syntax file into the org syntax. It can potentially cause some highlighting issues and slowness.
217
217
*`entities` - Highlight latex only in these situations (see [Orgmode latex fragments](https://orgmode.org/manual/LaTeX-fragments.html#LaTeX-fragments)):
218
-
* between `/begin` and `/end` delimiters
218
+
* between `\begin` and `\end` delimiters
219
219
* between `$` and `$` delimiters - example: `$a^2=b$`
220
220
* between `$$` and `$$` delimiters - example: `$$ a=+\sqrt{2} $$`
221
221
* between `\[` and `\]` delimiters - example: `\[ a=-\sqrt{2} \]`
@@ -345,9 +345,9 @@ Example:<br />
345
345
default value: `{ t = { description = 'Task', template = '* TODO %?\n %u' } }`<br />
346
346
Templates for capture/refile prompt.<br />
347
347
Variables:
348
-
-`%f`: Prints the file of the buffer capture was called from
349
-
-`%F`: Like `%f` but inserts the full path
350
-
-`%n`: Inserts the current `$USER`
348
+
*`%f`: Prints the file of the buffer capture was called from
349
+
*`%F`: Like `%f` but inserts the full path
350
+
*`%n`: Inserts the current `$USER`
351
351
*`%t`: Prints current date (Example: `<2021-06-10 Thu>`)
352
352
*`%T`: Prints current date and time (Example: `<2021-06-10 Thu 12:30>`)
353
353
*`%u`: Prints current date in inactive format (Example: `[2021-06-10 Thu]`)
@@ -357,18 +357,44 @@ Variables:
357
357
*`%x`: Insert content of the clipboard via the "+" register (see :help clipboard)
358
358
*`%?`: Default cursor position when template is opened
359
359
*`%^{PROMPT|DEFAULT|COMPLETION...}`: Prompt for input, if completion is provided an :h inputlist will be used
360
-
-`%(EXP)`: Runs the given lua code and inserts the result
360
+
*`%(EXP)`: Runs the given lua code and inserts the result
361
361
362
362
Example:<br />
363
-
`{ T = { description = 'Todo', template = '* TODO %?\n %u', target = '~/org/todo.org' } }`
0 commit comments