vscode-highlight
vscode-highlight copied to clipboard
Hotkey for quick enable/disable?
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?
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
maxMatchesbetween 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
},
]
},