Skip to content

sashamakarenko/vscode-show-fix-tags

Repository files navigation

Visual Studio Code FIX protocol syntax support

This is a lightweight FIX syntax support.

Features

  • Syntax highlighting.
  • Show tag names in tooltips.
  • Show enum names in tooltips.

Tag names

Enum names

Tip

You can modify the SOH character color by adding the following section in your settings.json

{
    ...
    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": "comment.character.fix.soh",
                "settings": {
                    "foreground": "#444444"
                }
            }
        ]
    },
    ...
}

HitCount