-
Notifications
You must be signed in to change notification settings - Fork 9
multiline grave marker turns off lens in Powershell #28
Copy link
Copy link
Open
Description
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.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels