-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutocomplete.sublime-settings
43 lines (35 loc) · 1.99 KB
/
Autocomplete.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
{
// Setting: file_view_abbrev
// Default: \tview
// Purpose: When reciving an autocomplete from the currently open file the autocomplete type shown on the right hand side will display this string
"file_view_abbrev": "\tview",
// --------------------
// sublime-better-completions-Package (sbc package)
// --------------------
// API files is contains the *keyword* such as `html`, `jquery`, `myglossary` with lowercase as filename `sbc-api-${filename}.sublime-settings` place in `/packages/User/` (your own) or `/packages/${this-package}/sublime-completions/` (package build-in).
// After you enable, disable or added new your own completions, you might need restart your Sublime Text Editor.
//
// Your own setting file `sbc-setting.sublime-settings` need to place in `/packages/User/` and contains all your api setting property that you want to enable.
//
// --------------------
// APIs Setup
// --------------------
// `true` means enable it.
// `false` means disable it.
"completion_active_list": {
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-functions.sublime-settings
"POL-core-functions":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-declarations.sublime-settings
"POL-core-declarations":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-config-files.sublime-settings
"POL-config-files":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-keywords.sublime-settings
"POL-core-keywords":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-members.sublime-settings
"POL-core-members":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-methods.sublime-settings
"POL-core-methods":true,
// ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/sbc-api-POL-core-constants.sublime-settings
"POL-core-constants":true
}
}