Open
Description
🤔 What's the problem you're trying to solve?
When I edit a feature file and I want to wrap a word/sentence in double-quotes, I mark the word and type "
. The word is replaced by the "
. For most other languages VS-Code wraps the word in "
. This would be very convenient.
Also:
<>
and()
could be highlighted with>
and)
"
,<
and(
could be automatically closed with"
,>
and)
<
and(
could also be wrapped with>
and)
✨ What's your proposed solution?
Update the language-configuration.json
to support these features:
{
"comments": {
"lineComment": "#"
},
"brackets": [
["<", ">"],
["(", ")"]
]
"autoClosingPairs": [
["<", ">"],
["(", ")"],
["\"", "\""],
["\"\"\"", "\"\"\""],
["```", "```"]
],
"surroundingPairs": [
["<", ">"],
["(", ")"],
["\"", "\""],
["\"\"\"", "\"\"\""],
["```", "```"]
]
}
⛏ Have you considered any alternatives or workarounds?
It would be silly to edit the file locally.
📚 Any additional context?
This is the documentation for the file:
https://code.visualstudio.com/api/language-extensions/language-configuration-guide
Metadata
Metadata
Assignees
Labels
No labels
Activity