Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 1.73 KB

README.md

File metadata and controls

72 lines (49 loc) · 1.73 KB

ABAP Editor Configuration

Default ABAP Scheme Workbench Editor

Default Editor

How To Enable The New ABAP Editor

The SAP GUI ABAP Editor for LISP enables

  • syntax highlighting
  • code completion

Default Editor

SAP GUI Configuration Folder

The SAP GUI configuration files are located in the roaming user application directory. They can be reached using the environment variable %APPDATA%.

cd %APPDATA%\SAP\SAP GUI\ABAP Editor
Windows 10 => [ C:\Users\<username>\AppData\Roaming\SAP\SAP GUI\ABAP Editor ]

Configuration Steps

  1. You must manually copy two configuration files provided here in your local SAP GUI configuration folder for the ABAP Editor
  • lisp_spec.xml
  • lisp_user.xml
  1. Change in the first lines of ABAP Include YY_LISP_IDE

    c_new_abap_editor TYPE flag VALUE abap_true, c_source_type TYPE string VALUE 'LISP'.

  2. Restart the workbench.

Configuration Files

To create your own theme files

  • lisp_spec.xml
  • lisp_user.xml

read

The comments in the blog post

give useful hints:

In lisp_spec.xml,

add
<TextType id="52" name="Keywords" ...>
  <Keywords>
…
    <Keyword text="define"/>
    <Keyword text="set!"/>
    <Keyword text="lambda"/>
…
  </Keywords>
</TextType>

<keywords>
</>

<structures>
  <structure open="(" close==")"\>
  <structure open="[" close=="]"\>
</structures>