-
Notifications
You must be signed in to change notification settings - Fork 38
/
MayaSublime.sublime-settings
44 lines (37 loc) · 1.38 KB
/
MayaSublime.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
{
// Maya commandPort HOST name (127.0.0.1, ...)
"maya_hostname": "127.0.0.1",
// Maya commandPort to communicate via Python
"python_command_port" : 7002,
// Maya commandPort to communicate via MEL
"mel_command_port" : 7001,
// When sending selected code to Maya, strip
// out single-line comments in order to reduce
// the amount of data sent, and leave more room
// for more code to be sent
//
// A reason for disabling this feature is if you
// rely on accurate line numbers from errors in
// your code, reported by the Script Editor
//
// When sending whole files (nothing selected),
// comments are never stripped.
"strip_sending_comments": true,
// This wraps Python code in its own namespace
// to avoid collisions with the main Maya
// environment. (It is safer but if you are
// mixing this plugin with code from the
// Script Editor, set this to false.)
"no_collisions": true,
// If enabled, create an undo around the entire
// code that is sent to Maya and executed
"create_undo": false,
// If enabled, MayaSublime will automatically hook
// up Maya's ScriptEditor to also publish its output to
// Sublime's console. A restart of SublimeText
// might be required after changing this value.
// Regardless of this setting, the output from Maya
// can be toggled on and off with the available
// commands in the Command Palette
"receive_maya_output": false
}