项目作者: larshp

项目描述 :
ABAP syntax highlighting for Visual Studio Code
高级语言:
项目地址: git://github.com/larshp/vscode-abap.git
创建时间: 2016-01-22T11:21:10Z
项目社区:https://github.com/larshp/vscode-abap

开源协议:MIT License

下载


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:

  1. "editor.tokenColorCustomizations": {
  2. "[Default Dark+]": {
  3. "textMateRules": [
  4. {
  5. "scope": "keyword.operator.abap",
  6. "settings": {
  7. "foreground": "#d456b9"
  8. }
  9. }
  10. ]
  11. }
  12. }

Folding / Regions

Example region,

  1. * #region Hello
  2. WRITE 'test'.
  3. * #endregion

this will make a foldable region, plus show up in the minimap,

Screenshot