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.md
+24
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,18 @@ To explicitly convert (or convert back) use commands **UnicodeMath: Convert**, *
62
62
63
63
To select symbols from list, use command **UnicodeMath: Insert**
64
64
65
+
Instant conversion
66
+
------------------
67
+
68
+
Instant conversion allows eager conversion of symbols in the following situations:
69
+
70
+
1. When `\name` is typed, there is a symbol called `name`, and no other symbol starts with `name`;
71
+
2. When `\nameX` is typed (for `X` any character), there is a symbol called `name`, but none that starts with `nameX`.
72
+
73
+
The intent is to remove control keystrokes and get the same result as when typing LaTeX code; for instance typing `\delta \subseteq \pi(f)` with instant conversion enabled will input `δ ⊆ π(f)`.
74
+
75
+
When using instant conversion it is recommended to disable `accept_prefixes`. `convert_on_space` can also be disabled to make a space after a symbol name use case 2 above instead of activating the conversion command.
76
+
65
77
Settings
66
78
--------
67
79
@@ -115,6 +127,18 @@ Enable (default) or disable converting list of chars with prefix:
115
127
"convert_list": true
116
128
</pre>
117
129
130
+
Enable or disable (default) instant conversion:
131
+
132
+
<pre>
133
+
"convert_instantly": true
134
+
</pre>
135
+
136
+
Enable or disable (default) treating a non-ambiguous prefix of a symbol name as the full name:
0 commit comments