Garovat Adrian

Results 15 comments of Garovat Adrian

Sorry for not being able to keep up with support. Work has been taking most my time and haven't used Astral in a good almost 2 years. Can try to...

Why munching was needed in this case was cause I needed to import some new homebrew items. If the above is not possible, maybe a similar approach to mark items...

Might be related, seems to be a similar case of parameter/input not being added to imports [https://github.com/danielgtaylor/python-betterproto/issues/426](https://github.com/danielgtaylor/python-betterproto/issues/426)

Managed to monkey patch it this way, maybe it's helpful, it appears the issue exists only when using auto redirect. ``` const IronForm = window.customElements.get("iron-form"); IronForm.prototype._createHiddenElement = function(name, value) {...

Adding the line `self.py_input_message_type` at line 692 in that file seems to work, also betterproto version 2.0.0-beta5

Yup that sounds about right, similar case should have been infered from the context where `$trigger$` is used in `jobs/tec_job` inline `trigger` param. Mostly the config i added above was...

1 and 2 would be the most ideal, making 3 not needed at all. 4 on its own could be useful for compatibility, to not have to make dummy declarations.

Would also be neat if the plugin can't easily infer a type, if somehow we could provide it through a comment in the line or something. Something like ``` #...

Some examples are https://github.com/Stellaris-Evolved/stellaris-evolved/blob/V0.9R8/common/inline_scripts/jobs/inline_evolved_job.txt https://github.com/Stellaris-Evolved/stellaris-evolved/blob/V0.9R8/common/inline_scripts/jobs/inline_evolved_job_no_desc.txt https://github.com/Stellaris-Evolved/stellaris-evolved/blob/V0.9R8/common/inline_scripts/jobs/inline_evolved_job_with_desc.txt The first inline calls either of the following two depending on one of the parameters passed to the first one and delegates the rest.

Also due to the interpolation of the `$job$` parameter into the modifier, the plugin has no idea that parameter is a job, so no autocomplete. Being able to annotate that...