Skip to content

Commit 464eb1b

Browse files
authored
#26 - Feature: Maya publishes ScriptEditor output to SublimeText console + Undo Support (#27)
* #26 - First pass at having Maya publish ScriptEditor output to SublimeText console * #26 - Option to enable an undo chunk around the code that is sent to Maya * Update readme and bump version to 3.0.0 * Prevent startup errors when first connecting Maya output, when settings have not yet sync'd * Fix failures on large Maya output by buffering and breaking Maya output into small packets * Only print [MayaSublime ] prefix for Maya-initiated messages; dont line break
1 parent 0544896 commit 464eb1b

File tree

7 files changed

+472
-59
lines changed

7 files changed

+472
-59
lines changed

Default.sublime-commands

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
"caption": "Maya: Send Selection to Maya",
44
"command": "send_to_maya"
55
},
6+
{
7+
"caption": "Maya: Enable ScriptEditor Output",
8+
"command": "enable_maya_output"
9+
},
10+
{
11+
"caption": "Maya: Disable ScriptEditor Output",
12+
"command": "disable_maya_output"
13+
},
614
{
715
"caption": "Preferences: Maya Settings",
816
"command": "open_file", "args":

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
(The MIT License)
2+
3+
Copyright (c) 2016 Justin Israel <justinisrael@gmail.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the 'Software'), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)