You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on some macros recently on VS Code. Nevertheless I find it quite bothering that whenever I try to create a quoted expression, the plugin automatically closed it for me. A simple example,
defconcatImpl(a: Expr[String], b: Expr[String])(usingQuotes):String=
a.valueOrAbort + b.valueOrAbort
inlinedefconcat(a: String, b: String)(usingQuotes):String=${ concatImpl('...'...) }
// ^// A single quote is automatically created here by the plugin during editing
It seems that language-configuration.json defines single quote to be one of the autoclosing pairs. Removing it would certainly solve this problem, but it may also impact the user experience of the users without the need to use macros. What do you think?
The text was updated successfully, but these errors were encountered:
I don't think notIn can help here. If I understand the syntax correctly after an single ' it's unkown if we want to contiue with a charater literal or a quote.
Hello!
I am working on some macros recently on VS Code. Nevertheless I find it quite bothering that whenever I try to create a quoted expression, the plugin automatically closed it for me. A simple example,
It seems that
language-configuration.json
defines single quote to be one of the autoclosing pairs. Removing it would certainly solve this problem, but it may also impact the user experience of the users without the need to use macros. What do you think?The text was updated successfully, but these errors were encountered: