Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>ABAPNew to Visual Studio Code? Get it now.

ABAP

Lars Hvam

|
38,262 installs
| (7) | Free
Syntax highlighting for ABAP
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Installs

vscode-abap

ABAP syntax highlighting for Visual Studio Code

Based on https://github.com/pvl/abap.tmbundle

Screenshot

Customization

If you want to customize the token colors, add an editor.tokenColorCustomizations section to your vscode settings.json. The following example will change the color of operators, which have no special highlighting by default:

"editor.tokenColorCustomizations": {
        "[Default Dark+]": {
            "textMateRules": [
                {
                    "scope": "keyword.operator.abap",
                    "settings": {
                        "foreground": "#d456b9"
                    }
                }
            ]
        }
    }
  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2023 Microsoft