You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, thanks for taking time to develop this great extension!
I don't work with frontend stuff (mostly scripting) and 50% of time this extension does what I need...
However, consider the following perl code block:
die qq{\n \$abs_filepath undefined or empty.\n} . EXIT_MSG_ unless undef_empty($abs_filepath);
die qq{\n Absolute path '$abs_filepath' does not exist.\n} . EXIT_MSG_ unless -e $abs_filepath;
die qq{\n Absolute file path '$abs_filepath' is not a regular file.\n} . EXIT_MSG_ unless -f $abs_filepath;
die qq{\n Absolute file path '$abs_filepath' is not readable.\n} . EXIT_MSG_ unless -r $abs_filepath;
Maybe I'm mis-interpreting how the setting work, but it currently takes me several steps modifying settings.json and re-running (and manual editing) to get:
die qq{\n \$abs_filepath undefined or empty.\n} . EXIT_MSG_ unless undef_empty($abs_filepath);
die qq{\n Absolute path '$abs_filepath' does not exist.\n} . EXIT_MSG_ unless -e $abs_filepath;
die qq{\n Absolute file path '$abs_filepath' is not a regular file.\n} . EXIT_MSG_ unless -f $abs_filepath;
die qq{\n Absolute file path '$abs_filepath' is not readable.\n} . EXIT_MSG_ unless -r $abs_filepath;
My at any given step, my setting.json would be e.g.
However, it seems only one token can be active at a time, e.g. if autoalign.moveableItemsAdditional was set as above, only the " ." would be aligned, and the " unless" would be ignored, meaning several iterations are required to get all tokens aligned).
Is there an obvious solution to this that I'm missing?
Cheers, thanks again!
The text was updated successfully, but these errors were encountered:
Hi JGLAHE,
I wanted to let you know that I've released a new version of the repository that addresses the bug you reported.
With this solution, I added config delimiter, you can define what character want to align.
Example:
Please check out the latest version and let me know if everything works as expected.
If you find the repository helpful, I'd really appreciate it if you could star it or leave a comment. This helps me a lot and encourages me to keep improving the project.
Hey, thanks for taking time to develop this great extension!
I don't work with frontend stuff (mostly scripting) and 50% of time this extension does what I need...
However, consider the following perl code block:
Maybe I'm mis-interpreting how the setting work, but it currently takes me several steps modifying settings.json and re-running (and manual editing) to get:
My at any given step, my setting.json would be e.g.
where
.\n}
inisn't recognized, meaning I have to delete the "." in the printing statement and use
" .",
to match the concatenation operator, thusHowever, it seems only one token can be active at a time, e.g. if
autoalign.moveableItemsAdditional
was set as above, only the" ."
would be aligned, and the" unless"
would be ignored, meaning several iterations are required to get all tokens aligned).Is there an obvious solution to this that I'm missing?
Cheers, thanks again!
The text was updated successfully, but these errors were encountered: