Skip to content

multiline grave marker turns off lens in Powershell #28

@jeffshumphreys

Description

@jeffshumphreys

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions