--- title: Symbolic strings --- {% raw %} {% endraw %} ### Symbolic strings The symbolic strings represent variables defined by the software. They are used by several widgets: - the [runnable modules shebang line](features_runnables). - the [native project confirguration widget](widgets_ce_project_editor): many fields accept symbols. - the [custom tools](widgets_custom_tools): parameters, working directory. - the [process input](widgets_process_input): the input field can include a symbol. - the [GDB commander](widgets_gdb_commander) custom commands. Possible symbols, by context, include: Application: - **``**: also _``_. Expanded to Coedit filename. - **``**: also _``_. Expanded to Coedit path. - **``**: Expanded to the path of the folder selected in the [mini-explorer](widgets_mini_explorer). 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) 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. 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). 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. {% raw %} {% endraw %}