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: README.org
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Alternatively, git clone this repository and point Emacs to it using the ~:load-
29
29
30
30
** Usage
31
31
32
-
The package can be enabled interactively or automatically on org-mode start-up:
32
+
The package can be enabled interactively or automatically on Org mode start-up:
33
33
34
34
#+begin_src emacs-lisp
35
35
@@ -43,21 +43,28 @@ By default, toggling is instantaneous and only emphasis markers are toggled. The
43
43
- org-appear-autosubmarkers :: if non-nil, toggle subscripts and superscripts
44
44
- org-appear-autoentities :: if non-nil, toggle Org entitites
45
45
- org-appear-autokeywords :: if non-nil, toggle keywords in ~org-hidden-keywords~
46
-
- org-appear-inside-latex :: if non-nil, also toggle entities and subscripts / superscripts in Latex fragments
46
+
- org-appear-inside-latex :: if non-nil, toggle entities and sub/superscripts in LaTeX fragments
47
47
- org-appear-delay :: seconds of delay before toggling
48
48
- org-appear-trigger :: when to toggle elements
49
49
50
50
If Org mode custom variables that control visibility of elements are configured to show hidden parts, the respective ~org-appear~ settings do not have an effect.
51
51
52
52
~org-appear-trigger~ can be set to ~always~, ~on-change~, or ~manual~. With ~on-change~, elements will be toggled only when the buffer is modified or on mouse click. This option disables delayed toggling. With ~manual~, toggling must be enabled by calling ~org-appear-manual-start~. ~org-appear-manual-stop~ is used to disable toggling with this option.
53
53
54
-
The ~manual~ option is useful for, e.g., integrating ~org-appear~ with ~evil-mode~. Below is an example configuration for toggling elements in Insert mode only.
54
+
The ~manual~ option is useful for, e.g., integrating ~org-appear~ with ~evil-mode~. Below is an example configuration for toggling elements in Insert mode only. Note that ~org-appear~ expects to be enabled in Org mode buffers only, which is why the example attaches ~evil-mode~ hooks to the Org mode startup hook.
0 commit comments