-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
AmxxEditor.sublime-settings
48 lines (36 loc) · 1.83 KB
/
AmxxEditor.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
48
{
// Path to includes folder, the files here will be used for auto completion
"include_directory": "F:\\SteamCMD\\steamapps\\common\\Half-Life\\czero\\addons\\amxmodx\\scripting\\include",
// ( true / false ) Enable the parameters addition when auto completing
"add_function_parameters": true,
// ( true / false ) Enable IntelTip PopUp by hovering functions with the mouse
"enable_inteltip": true,
// ( true / false ) Enable IntelTip PopUp by selecting the function name only
"enable_inteltip_name": false,
// ( true / false ) Enable IntelTip Phantom PopUp on function calls
// by selecting function name
"enable_inteltip_calls": true,
// ( true / false ) The scope color for the IntelTip PopUp mark
"enable_inteltip_color": "inteltip.pawn",
// ( true / false ) Enable Auto-Increment Build/Version
"enable_buildversion": false,
// ( true / false ) Enable auto completing functions and global variables
// from the current file. If you change this setting, you need to restart
// Sublime Text before it can take effect
"function_autocomplete": true,
// ( true / false ) Enable auto completing words from the current file
"word_autocomplete": true,
// Enable editor debug messages:
// 0 - Disabled debugging
// 1 - Errors messages
"debug_level": 1,
// ( color name ) Set color scheme ( dark / twlight / atomic / white / npp )
"popup_color_scheme": "dark",
// The new file syntax when using the menu `AmxxEditor -> New Plug-in`
// Possible values are:
// "Packages/AmxxPawn/AmxxPawn.sublime-syntax",
// "Packages/AmxxEditor/AmxxEditorPawn.sublime-syntax",
"amxx_file_syntax": "Packages/AmxxEditor/AmxxEditorPawn.sublime-syntax",
// ( 0.5 ~ 5.0 ~ 60.0 ) Delay before regenerating auto-completion snippets
"live_refresh_delay": 60.0
}