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: doc/orgmode.txt
+64-41Lines changed: 64 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -395,7 +395,7 @@ default value: `nil`
395
395
Possible values:
396
396
* `native` - Includes whole latex syntax file into the org syntax. It can potentially cause some highlighting issues and slowness.
397
397
* `entities` - Highlight latex only in these situations (see Orgmode latex fragments (https://orgmode.org/manual/LaTeX-fragments.html#LaTeX-fragments)):
398
-
* between `/begin` and `/end` delimiters
398
+
* between `\begin` and `\end` delimiters
399
399
* between `$` and `$` delimiters - example: `$a^2=b$`
400
400
* between `$$` and `$$` delimiters - example: `$$ a=+\sqrt{2} $$`
401
401
* between `\[` and `\]` delimiters - example: `\[ a=-\sqrt{2} \]`
@@ -538,9 +538,9 @@ type: `table<string, table>`
538
538
default value: `{ t = { description = 'Task', template = '* TODO %?\n %u' } }`
539
539
Templates for capture/refile prompt.
540
540
Variables:
541
-
- `%f`: Prints the file of the buffer capture was called from
542
-
- `%F`: Like `%f` but inserts the full path
543
-
- `%n`: Inserts the current `$USER`
541
+
* `%f`: Prints the file of the buffer capture was called from
542
+
* `%F`: Like `%f` but inserts the full path
543
+
* `%n`: Inserts the current `$USER`
544
544
* `%t`: Prints current date (Example: `<2021-06-10 Thu>`)
545
545
* `%T`: Prints current date and time (Example: `<2021-06-10 Thu 12:30>`)
546
546
* `%u`: Prints current date in inactive format (Example: `[2021-06-10 Thu]`)
@@ -550,18 +550,44 @@ Variables:
550
550
* `%x`: Insert content of the clipboard via the "+" register (see :help clipboard)
551
551
* `%?`: Default cursor position when template is opened
552
552
* `%^{PROMPT|DEFAULT|COMPLETION...}`: Prompt for input, if completion is provided an :h inputlist will be used
553
-
- `%(EXP)`: Runs the given lua code and inserts the result
553
+
* `%(EXP)`: Runs the given lua code and inserts the result
554
554
555
555
Example:
556
-
`{ T = { description = 'Todo', template = '* TODO %?\n %u', target = '~/org/todo.org' } }`
0 commit comments