-
Notifications
You must be signed in to change notification settings - Fork 19
/
DictionaryAutoComplete.sublime-settings
47 lines (47 loc) · 2.02 KB
/
DictionaryAutoComplete.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
// ----------- default for all languages -----------
// This is the default encoding for all dictionaries
"encoding" : "UTF-8",
// Insert the original auto-complete list "before", "after", "none" or "default".
// If set to "default" let Sublime (or other completion plugging) to decide.
"insert original": "default",
// Insert the "ignored_words" section from the settings: "before", "after" or false.
"use ignored words": false,
// Insert the "added_words" section from the settings: "before", "after" or false.
"use added words": false,
// The maximal number of suggestions returned by this plugging.
"maximum results": 10,
// The scopes where DictionaryAutoComplete is allowed.
"scopes":["text", "comment", "string.quoted"],
// The minimal length to fire DictionaryAutoComplete.
// For backward compatibility reasons it is set to 1, but probably 3 is more reasonable
"minimal length": 1,
// A list of characters after which DictionaryAutoComplete is not fired.
// For example to prevent firing after `:` or `@` you can set
// "forbidden prefixes": [":","@"]
"forbidden prefixes": [],
// Set the debug level.
// example : "status, print"
// - "status" display info in the status bar
// - "print" print info in the python consol
"debug": "no",
// --------------- language specific ---------------
// Be careful : if you use "languages" for some language in your local settings the entire structure "languages" is redefined.
"languages": {
"en_US": {
// this is the encoding for the default ST dictionary
"encoding": "ISO-8859-1",
// you can overwrite here the default dictionary
// for example by putting
// "dictionary" : "Packages/User/frequency_en.txt",
},
"en_GB": {
// this is the encoding for the default ST dictionary
"encoding": "ISO-8859-1",
},
"French": {
// all characters in the same string are treated as identical
"smash characters": ["eéèêëæ", "aàâä", "cç", "iîï", "oôöœ", "uùûü", "yÿ"]
}
}
}