bracket-lens-vscode
bracket-lens-vscode copied to clipboard
multiline grave marker turns off lens in Powershell
Just to inform: The default setting for open/close graves, grave is a multiline marker in PowerShell Visual Code. There is no closing marker, and so I think the tool is looking for a closing grave and never finds one. The default setting is:
"multiline": [
{
"opening": "`",
"closing": "`",
"escape": [
"\\\\",
"\\`"
]
}
I tried commenting out "//" c++ style but I doubt JSON-LD(?) is supported here.
So I just made them not match by injecting "zzz".
"multiline": [
{
"opening": "zzz`",
"closing": "zzz`",
"escape": [
"\\\\",
"\\`"
]
}
Mostly just posting a helpful workaround.