Skip to content
584 changes: 584 additions & 0 deletions scripts/sync-globals-docs.js

Large diffs are not rendered by default.

331 changes: 240 additions & 91 deletions vs-code-extension/out/extension.js

Large diffs are not rendered by default.

75 changes: 65 additions & 10 deletions vs-code-extension/out/postRunner.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions vs-code-extension/out/providers/fileTreeProvider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 37 additions & 1 deletion vs-code-extension/out/providers/functionListProvider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 24 additions & 1 deletion vs-code-extension/out/providers/propertyProvider.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 37 additions & 3 deletions vs-code-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "hsm-post-processor",
"displayName": "Autodesk Fusion Post Processor Utility",
"description": "Post processor utility for editing, testing, and debugging Autodesk Fusion post processors.",
"version": "5.0.0",
"version": "5.0.1",
"icon": "res/icons/logo.png",
"author": {
"name": "Autodesk",
Expand Down Expand Up @@ -58,6 +58,18 @@
"light": "res/icons/ref.svg"
}
},
{
"command": "autodesk.post.functionList.filter",
"title": "Search functions",
"shortTitle": "Search...",
"icon": "$(search)"
},
{
"command": "autodesk.post.functionList.clearFilter",
"title": "Clear the search filter and show all functions",
"shortTitle": "Clear search",
"icon": "$(clear-all)"
},
{
"command": "autodesk.post.disableLineSelection",
"title": "Disable auto line selection",
Expand Down Expand Up @@ -116,6 +128,11 @@
"shortTitle": "Filter machines...",
"icon": "$(filter)"
},
{
"command": "autodesk.post.updateOnlineLibrary",
"title": "Update Online Library",
"category": "Autodesk Post Utility"
},
{
"command": "autodesk.post.propertyList.refresh",
"title": "Load or reload post properties from the current post file",
Expand Down Expand Up @@ -169,6 +186,11 @@
"title": "Update post properties for current file...",
"category": "Autodesk Post Utility"
},
{
"command": "autodesk.post.installTypeDeclarations",
"title": "Install IntelliSense type declarations",
"category": "Autodesk Post Utility"
},
{
"command": "autodesk.post.foldPropertyList",
"title": "Fold property list...",
Expand Down Expand Up @@ -362,6 +384,16 @@
"when": "view == functionList",
"group": "navigation"
},
{
"command": "autodesk.post.functionList.filter",
"when": "view == functionList",
"group": "navigation"
},
{
"command": "autodesk.post.functionList.clearFilter",
"when": "view == functionList",
"group": "navigation"
},
{
"command": "autodesk.post.cncList.addFolder",
"when": "view == cncList",
Expand Down Expand Up @@ -656,14 +688,16 @@
"enum": [
"off",
"inline",
"inline-detailed",
"full"
],
"enumDescriptions": [
"Off: clean NC only; click and hover show call stack when enabled",
"Inline: entry function and line on each NC line; full call stack on hover",
"Inline: clean NC with ghost annotations showing top-level entry functions (e.g. onOpen, onSection, onRapid); full call stack on hover",
"Inline (detailed): clean NC with ghost annotations showing the actual output function; full call stack on hover",
"Full: !DEBUG lines kept in output; call stack on hover"
],
"description": "Debug output when posting: Off, Inline, or Full"
"description": "Debug output when posting: Off, Inline, Inline (detailed), or Full"
},
"AutodeskPostUtility.showWriteBlockInCallStack": {
"type": "boolean",
Expand Down
Loading
Loading