-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathUnicodeMath.sublime-settings
32 lines (32 loc) · 1.09 KB
/
UnicodeMath.sublime-settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
// Auto-convert on space (use `shift+space` to insert `space` in this case)
"convert_on_space": true,
// Custom symbols
// Use it for you symbols, for example:
// {
// "mysymbol": "\u0021",
// "myothersymbol": "\u2080"
// }
"symbols": {},
// Custom synonyms
// Synonims for existing symbol names:
// {
// "mys": "mysymbol"
// }
"synonyms": {},
// Syntaxes to ignore
"ignore_syntax": ["latex"],
// Convert \uXXXX and \UXXXXXXXX to symbol
"convert_codes": true,
// Convert multichar subscript and superscript \^abc → \^a\^b\^c and \_abc → \_a\_b\_c
"convert_sub_super": true,
// List-convert, \\prefix\abc → \prefixa\prefixb\prefixc, for example
// \\Bbb\ABC → \BbbA\BbbB\BbbC → 𝔸𝔹ℂ
"convert_list": true,
// Convert instantly when an escape is complete, without pressing space
"convert_instantly": false,
// Treat a non-ambiguous prefix as a full symbol name
"accept_prefixes": false,
// Insert a trailing space after symbol insertion
"trailing_space": false,
}