vscode-rust
vscode-rust copied to clipboard
Remove angular brackets from `autoClosingPairs`
Angular brackets were added to autoClosingPairs in #720 on the premise that Rust developers write generics more than comparison logic. While this might be true, this causes issues when writing comparisons, because you get situations like this:
if (x <>
^ automatically added
This issue has been discussed here, here, and here. This PR removes angular brackets from autoClosingPairs as recommended by vscode to avoid any ambiguity.
Can this be merged?