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/configuration.org
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3012,3 +3012,30 @@ require('orgmode').setup({
3012
3012
#+end_src
3013
3013
3014
3014
📝 NOTE: If you are using a plugin for =vim.ui.input=, make sure it supports autocompletion for better experience. [[https://github.com/folke/snacks.nvim][snacks.nvim]] input module supports autocompletion.
3015
+
3016
+
*** cookies_use_extmarks
3017
+
:PROPERTIES:
3018
+
:CUSTOM_ID: cookies_use_extmarks
3019
+
:END:
3020
+
- Type: =boolean=
3021
+
- Default: =false=
3022
+
Possible values:
3023
+
- =true= - Uses /Virtual/ cookies to show live progress for cookies overlayed on top of the actual cookie text.
3024
+
- =false= - Do not add any /Virtual/ cookies.
3025
+
3026
+
You can toggle Virtual cookies on the fly by executing command =:Org cookie_mode= when in a org buffer.
3027
+
This additionally sets the buffer variable =vim.b.org_cookie_mode= to =true= or =false=, depending on the current state.
3028
+
3029
+
Currently this only applies Virtual cookies to headlines.
3030
+
3031
+
Uses the following highlights:
3032
+
- ~@org.cookie.delimiter~: The highlight to use for the delimiters (brackets: ~[~ & ~]~)
3033
+
- ~@org.cookie.delimiter.left~: A more granular highlight for just the left ~[~ bracket
3034
+
- ~@org.cookie.delimiter.right~: A more granular highlight for just the right ~]~ bracket
3035
+
- ~@org.cookie.number~: The numbers used in the cookie (~50~)
3036
+
- ~org.cookie.number.complete~: A more granular highlight for the left side of ~[1/5]~ (in this case the ~1~)
3037
+
- ~org.cookie.number.total~: A more granular highlight for the right side of ~[1/5]~ (in this case the ~5~)
3038
+
- ~@org.cookie.sign~: The sign used in the cookie (e.g. ~/~, ~%~, or ~???~)
3039
+
- ~@org.cookie.sign.unknown~: More granular if there wasn't items to calculate on (~???~) and you want a different highlight for the unknown sign
3040
+
- ~@org.cookie.sign.div~: More granular for the div sign, the ~/~ in ~[1/5]~
3041
+
- ~@org.cookie.sign.percent~: More granular for the percent sign, the ~%~ in ~[100%]~
0 commit comments