vscode-rust
vscode-rust copied to clipboard
Greater than gets inserted after less than
Whenever you type a < symbol with this installed, it inserts a >, even if it makes no sense. So if you type x < 4, you instead end up with x < 4>, which is really annoying. Presumably this is for when you give a template argument, but it doesn't even work properly for that. If you have "4".parse(), and you insert ::< after parse, it does not insert a >. So ends up just being annoying interference in the most common case (when typing <, <= or <<), while not working properly when it would be useful.
There is already an open PR for this