-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add per-file formatting variable support
This allows reusing a variable in multiple places inside of the file to make it easier for automated tools to edit the file.
- Loading branch information
1 parent
782d791
commit acb456b
Showing
9 changed files
with
467 additions
and
15 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
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,8 @@ | ||
{ | ||
"name": "2024", | ||
"context": ["app", "maya"], | ||
"inherits": true, | ||
"distros": [ | ||
"maya2024" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{ | ||
"name": "maya2024", | ||
"variables": { | ||
"maya_root_linux": "/usr/autodesk/maya2024/bin", | ||
"maya_root_windows": "C:/Program Files/Autodesk/Maya2024/bin" | ||
}, | ||
"aliases": { | ||
"windows": [ | ||
[ | ||
"maya", { | ||
"cmd": "{maya_root_windows}/maya.exe" | ||
} | ||
], | ||
[ | ||
"mayapy", { | ||
"cmd": "{maya_root_windows}/mayapy.exe", | ||
"min_verbosity": {"global": 2} | ||
} | ||
], | ||
[ | ||
"maya24", { | ||
"cmd": "{maya_root_windows}/maya.exe", | ||
"min_verbosity": {"global": 1} | ||
} | ||
], | ||
[ | ||
"mayapy24", { | ||
"cmd": "{maya_root_windows}/mayapy.exe", | ||
"min_verbosity": {"global": 2} | ||
} | ||
], | ||
[ | ||
"pip", { | ||
"cmd": [ | ||
"{maya_root_windows}/mayapy.exe", | ||
"-m", | ||
"pip" | ||
], | ||
"min_verbosity": {"global": 2} | ||
} | ||
] | ||
], | ||
"linux": [ | ||
[ | ||
"maya", { | ||
"cmd": "{maya_root_linux}/maya" | ||
} | ||
], | ||
[ | ||
"mayapy", { | ||
"cmd": "{maya_root_linux}/mayapy", | ||
"min_verbosity": {"global": 2} | ||
} | ||
], | ||
[ | ||
"maya24", { | ||
"cmd": "{maya_root_linux}/maya", | ||
"min_verbosity": {"global": 1} | ||
} | ||
], | ||
[ | ||
"mayapy24", { | ||
"cmd": "{maya_root_linux}/mayapy", | ||
"min_verbosity": {"global": 2} | ||
} | ||
], | ||
[ | ||
"pip", { | ||
"cmd": [ | ||
"{maya_root_linux}/mayapy", | ||
"-m", | ||
"pip" | ||
], | ||
"min_verbosity": {"global": 2} | ||
} | ||
] | ||
] | ||
} | ||
} |
Oops, something went wrong.