-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from justinfx/23_comment_stripping
Setting to disable single line comment stripping
- Loading branch information
Showing
4 changed files
with
29 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"2.0.0": "messages/2.0.0.txt", | ||
"2.1.0": "messages/2.1.0.txt", | ||
"2.2.0": "messages/2.2.0.md" | ||
"2.2.0": "messages/2.2.0.md", | ||
"2.2.1": "messages/2.2.1.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
MayaSublime 2.2.1 change log: | ||
|
||
- Add option "strip_sending_comments" with a default value of true, controlling whether single-line comments from selected source code is stripped before sending code selections to Maya. Sending whole files (nothing selected) always sends executed all content. This was existing behavior to reduce the amount of data being sent to the commandPort, but can lead to incorrect line numbers when errors are reported in Maya. So you can disable it if you are having trouble debugging with what Maya reports. |