vscode-highlight icon indicating copy to clipboard operation
vscode-highlight copied to clipboard

Hotkey for quick enable/disable?

Open Darptolus opened this issue 10 months ago • 1 comments

Could a hotkey be added that hides/disables/removes the highlight/colors from the code? Can you provide instructions on how to configure it properly?

Darptolus avatar Jan 25 '25 02:01 Darptolus

Same https://github.com/fabiospampinato/vscode-highlight/issues/70

Best I could do was to use https://marketplace.visualstudio.com/items?itemName=hoovercj.vscode-settings-cycler

Toggle maxMatches between 1 and X, so you can still see once each, 0 would disable the limit.

    {
        "id": "editor-highlight",
        "values": [
            {
                "highlight.maxMatches": 1000, // default
            },
            {
                "highlight.maxMatches": 1, // cannot be set to one
            },
        ]
    },

dimateos avatar Feb 27 '25 22:02 dimateos