Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 884 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 884 Bytes

VSCode Mark Highlighter

An extension for VSCode that highlights the ==marked== text in your code editor.

Screenshot

Screenshot

Extension Settings

Keybinding

Default keybinding is ctrl+alt+cmd+=. You can change it by adding this to your keybindings.json file:

{
  "command": "mark.highlighter.wrapUnwrap",
  "key": "YOUR OWN KEYBINDING",
  "when": "editorTextFocus && !editorReadonly && editorLangId =~ /^markdown$|^rmd$|^quarto$/"
}

Theme Color

Add this to your settings.json file:

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": "markup.raw.marked.vscode.mark.highlighter",
        "settings": {
          "foreground": "#ff5500",
          "fontStyle": "italic"
        }
      }
    ]
  }