-
Hi all, Consider the following example: someCmd --with-arg1 value1 \
--with-arg2 value2 When adding the annotation to the first line like this: someCmd --with-arg1 value1 \ #(1)!
--with-arg2 value2 the extra space char is rendered after the If I'd use Appreciate any guidance on how to make it work =) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
IMHO, this is essentially a problem with the lexer, because the comment will be preceded by a whitespace that it outside of the lexed comment. We've also discussed this before with more insights (and possible solutions), so you may try to use GitHub search to uncover the issue and discussion |
Beta Was this translation helpful? Give feedback.
gotcha, found the original issue and tried the suggested workaround.
With a minor modification it worked beautifully - #3846 (comment)