no-stack-dub-sack / apexdox-vs-code

A lightweight VS Code extension that makes documenting your Salesforce Apex files an easy, integrated experience.
Other
49 stars 7 forks source link

Any way to pull *.trigger files in as well? #54

Closed cemerson closed 2 years ago

cemerson commented 2 years ago

I know most people don't put much code in Apex triggers but since they're Apex would it be possible to pull these in as well via apexdox.engine.source or apexdox.engine.includes or some other way? I tried this but so far not working:

    "apexdox.engine.source": [
        {
            "path": "${workspaceFolder}/force-app/main/default/classes"
        },
        {
            "path": "${workspaceFolder}/force-app/main/default/triggers"
        }
    ]
    "apexdox.engine.includes": [
        "*.cls", "*.trigger"
    ]

Apologies if answered already - don't see any obvious existing threads on this yet.

cemerson commented 2 years ago

On second thought - I can see this being a bit of a pain to add.