Ignore custom Lua operators: e.g. +=, -= #1517
-
I need to be able to ignore a bunch of custom operators but can't find a mention of skipping non-standard syntax. Is this a job for a plugin? |
Beta Was this translation helpful? Give feedback.
Answered by
carsakiller
Sep 2, 2022
Replies: 1 comment 1 reply
-
What exactly do you mean by "skip" them? You can add them to |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
paul-reilly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What exactly do you mean by "skip" them? You can add them to
runtime.nonstandardSymbol
and the language server shouldn't complain about it... it just probably won't be able to understand it as an "add" operation or "subtraction" operation.