This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 118
/
mavensmate.sublime-settings
120 lines (101 loc) · 3.65 KB
/
mavensmate.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
#############
# IMPORTANT #
#############
Version 7 of MavensMate for Sublime Text moves many of the settings previously managed in Sublime Text JSON files to the "Global Settings" found in the MavensMate Desktop. See MavensMate > Settings > Settings Help for more information.
MavensMate for Sublime Text settings
NOTE: MavensMate user settings will override MavensMate default settings
To override default MavensMate settings, modify user-specific settings (MavensMate --> Settings --> User)
*/
{
//if true, MavensMate will automatically hide the debug panel upon a successful operation
"mm_hide_panel_on_success" : true,
//the amount of time (in seconds) before MavensMate hides the debug panel upon a successful operation
"mm_hide_panel_time" : 0,
//if true, MavensMate will capture the save file operation and compile to the Salesforce.com server automatically
"mm_compile_on_save" : true,
//if true, MavensMate will scroll to the line of a reported exception when there is a compilation error
"mm_compile_scroll_to_error": true,
//if true, MavensMate will hook into the Sublime Text completions API to offer code assistance
"mm_autocomplete" : true,
//location where MavensMate for Sublime Text debug logs should be placed (must be existing path)
//log file will be named mmst.log
//windows users: please set like so: C:\\path\\to\\your\\logs
"mm_plugin_logs_location" : "",
// set to true to diff Salesforce.com server conflicts in Sublime Text
"mm_diff_server_conflicts" : true,
//set to false if during completions, the size of your .org_metadata file is bogging down the editor during code completion
"mm_use_org_metadata_for_completions" : true,
//set to true if you would like to automatically start MavensMate Desktop when Sublime Text opens
"mm_start_mavensmate_app" : false,
//set to true if you would like to ping MavensMate Server at startup and show an error if it cannot be reached
"mm_ping_mavensmate_server_on_startup" : false,
// set to full path of MavensMate Desktop (MavensMate.app on OSX, MavensMate.exe on Windows, etc.)
"mm_mavensmate_app_location" : {
"osx": "/Applications/MavensMate.app",
"windows": "C:\\Program Files\\MavensMate.exe",
"linux": ""
},
// set to full path of your Sublime Text executable (this setting is used by the "open project" command)
"mm_sublime_text_executable_location" : {
"osx": "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl",
"windows": "C:\\Program Files\\Sublime Text 3\\sublime_text.exe",
"linux": "/usr/bin/subl"
},
//mavensmate will attempt to compile when savings files with the following extensions
"mm_apex_file_extensions": [
".page",
".component",
".cls",
".object",
".trigger",
".layout",
".resource",
".remoteSite",
".labels",
".app",
".dashboard",
".permissionset",
".workflow",
".email",
".profile",
".scf",
".queue",
".reportType",
".report",
".weblink",
".tab",
".letter",
".role",
".homePageComponent",
".homePageLayout",
".objectTranslation",
".flow",
".datacategorygroup",
".snapshot",
".site",
".sharingRules",
".settings",
".callCenter",
".community",
".authProvider",
".customApplicationComponent",
".quickAction",
".approvalProcess",
".html",
".apxc",
".apxt",
".auradoc",
".css",
".js",
".evt",
".cmp",
".tokens",
".svg",
".design"
],
//local server port (do not change unless you know what you're doing)
"mm_app_server_port" : 56248,
//if true, mavensmate will send anonymous usage statistics (NEVER sensitive information like usernames/passwords/etc) for development, reporting, & debugging purposes (see util.py for source of the call)
"mm_send_usage_statistics" : true
}