Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

scrollbar

The scripting editor contains the following features :

Table of Contents

 

Syntax highlighting

With syntax highlighting all the words and types that are known in python will be shown as colored text. To configure the color schema go to the DeltaShell installation folder and navigate to the plugins\DeltaShell.Plugins.Scripting.Gui folder. Here the XML file "Python.xshd" contains all the information used for syntax highlighting.

 

 

 

Code completion

Code completion is used to give the you quick access to all properties, events and methods of the variable that you are working on. When activated a list will be shown showing all the options for this variable and the documentation for the selected element.

To filter the list continue typing, and the list will filter out all non matching elements. To select an element press the up and down keys and enter to confirm.

If an empty list is shown, then the type of the variable can not be determined or the variable has no elements to show. Code completion is activated when a '.' is typed or when Ctrl + Space is pressed.

 

 

Show extra characters

These options are added to show you the space, tab and line end characters. This can be important because pythons logic uses indenting for its statements.

 

Spaces

Tabs

End of line

 

Regions

Regions are used to mark code blocks, and gives you the ability to collapse these blocks to 1 line with a title.

Opened region

Closed region

Local variables

 

The local variable option gives you an overview of the declared variables in your script. The variables are declared when you run the part of your script that declares the variables.

 

 

 

It will show the name of the variable followed by a string representation of the variable value and the type.

To get more detail about the variable, select it and the property window will show you all the details about the variable

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Ribbon :

When you open a scripting editor in DeltaShell a Scripting tab will appear in the DeltaShell ribbon. This ribbon has the following additional options :

Function

Description

Run script

Executes the selected text. If no text is selected then it will execute the entire script

Clear cached variables

Clears all variables and loaded libraries from memory

Debugging

Enables/Disables the debug option. When enabled you can add breakpoint to the code (using F9 or clicking in the margin) and the code will stop at this point before executing the statement (use F10 (step over) or F11 (step into) for a more step by step approach)

Python variables

Show or hide python variables (like _var_) in code completion

Insert spaces / tabs

Determines if spaces or tab characters are added when pressing tab

Tab size

Sets the number of spaces that are considered equal to a tab character

Save before run

Saves the changes to the file before running

Create region

Creates a new region surrounding the selected text

Comment selection

Comments out the selected text

 

scrollbar