Replies: 1 comment 8 replies
-
|
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm running the latest rust-analyzer with
rustup run stable rust-analyzer
and for some reason, whenever I add a parenthesis around an expression, it decides to be "helpful" and adds a closing one at the end of the expression. This is extremely annoying, often incorrect and I would like to disable this feature.Running
rustup run stable rust-analyzer --print-config-schema
I don't see any option to disable this feature. There'srust-analyzer.typing.autoClosingAngleBrackets.enable
but it's only about closing brackets. I think it might be related to this PR: #15532Please let me know how to disable this feature, and please do not add automated "features" that cannot be disabled. I use this tool to lint my code, I don't want it to get in my way and messing up my mental state when I am in the flow. Right now I have to work with LSP disabled because this feature keeps interrupting me while I'm trying to refactor my code.
Beta Was this translation helpful? Give feedback.
All reactions