Home >Development Tools >sublime >How to make Sublime Text editor support new ABAP keywords
The following column sublime usage tutorial will introduce how to make the Sublime Text editor support new ABAP keywords.
ABAP 7.40 introduces many new keywords, your Sublime Text may not be able to achieve the expected syntax highlighting (syntax highlight) for these new keywords or auto completion.
In fact, you only need to manually modify the two files in the DataPackagesABAP in the Sublime Text installation directory to ensure that the newly launched keywords of SAP ABAP Netweaver can also support syntax highlighting and automatic completion:
1. ABAP.tmLanguage
For example, add support for the REDUCE keyword:
2. ABAP.sublime-completions
Just maintain the keywords that are expected to support the auto-complete function into the corresponding location of this file.
Test: The new keyword REDUCE can be automatically completed, and it will be automatically highlighted after the input is completed.
The above is the detailed content of How to make Sublime Text editor support new ABAP keywords. For more information, please follow other related articles on the PHP Chinese website!