---
title: Symbolic strings
header-includes:
---
The symbolic strings represent variables defined by the software. They are used by several widgets:
- the [runnable modules shebang line](features_runnables.html).
- the [native project confirguration widget](widgets_ce_project_editor.html): many fields accept symbols.
- the [custom tools](widgets_custom_tools.html): parameters, working directory.
- the [process input](widgets_process_input.html): the input field can include a symbol.
- the [GDB commander](widgets_gdb_commander.html) custom commands.
Possible symbols, by context, include:
Application:
- **``**: Expanded to the application (Dexed) filename.
- **``**: Expanded to the application (Dexed) path.
- **``**: Expanded to the path of the folder selected in the [mini-explorer](widgets_mini_explorer.html).
Environment:
- **``**: Expanded to the user home directory. This is the equivalent of `HOME` (on a Posix system) or `USERHOME` (on a Windows system).
- **``**: Expanded to the user temporary directory.
- **``**: Expanded to the user name.
Current file:
- **``**: also _``_. Expanded to the current file filename.
- **``**: also _``_. Expanded to the current file path.
- **``**: also _``_. Expanded to the runnable produced for the current file. The [OutputFolder](features_runnables.html) option is not handled.
- **``**: also _``_. Expanded to the identifier located at the caret position.
- **``**: also _``_. Expanded to the current line of code.
- **``**: also _``_. Expanded to the current selection.
- **``**: also _``_. Expanded to the caret line number (1-based).
- **``**: also _``_. Expanded to the caret column number (1-based).
Current project:
- **``**: also _``_. Expanded to the project filename.
- **``**: also _``_. Expanded to a list that contains each D source of the project. Each item is separated by a line ending.
- **``**: also _``_. Expanded to the project name (it's filename minus its path and extension)
- **``**: also _``_. Expanded to the project output filename (a static library filename, a program name, etc.)
- **``**: also _``_. Expanded to the project output parent directory.
- **``**: also _``_. Expanded to the project path.
- **``**: also _``_. Expanded to the field _RootFolder_ of a CE project (n/a if the current project is for DUB).
- **``**: also _``_. Expanded to the sources common directory.
- **``**: also _``_. Expanded to the value of the _version_ field of a [CE project](widgets_ce_project_editor.html).
The expanded form of a symbol is never empty. When a symbol expands to nothing it's set to a pair of back quotes, e.g **\``** for a **``** when no project is opened.
The slices located before and after the symbols are passed in their original form, e.g:
`http://www.google.com/search?q="dlang.org"&btnI=Im+Feeling+Lucky`
is expanded to:
`http://www.google.com/search?q="dlang.org"indexOf&btnI=Im+Feeling+Lucky` if **indexOf** is the current identifier.