mirror of https://gitlab.com/basile.b/dexed.git
update documentation
This commit is contained in:
parent
44062b9c41
commit
5c5c4d207c
|
@ -40,6 +40,7 @@ Options are detected after the first non white character of the script line.
|
|||
|
||||
In general the program output is redirected to the [messages](widgets_messages).
|
||||
This is true unless the _Compile file and run outside_ or the _Run compiled file outside_ actions are used.
|
||||
Note that in this case the [consoleProgram global options](options_application) allows to define the terminal used.
|
||||
|
||||
When the program is not run outside, the [process input widget](widgets_process_input) is used to pass input to the runnable.
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ title: index
|
|||
|
||||

|
||||
|
||||
This documentation is based on version 3, update 4.
|
||||
This documentation is based on version 3.5.1
|
||||
|
||||
#### First steps
|
||||
|
||||
|
|
|
@ -8,9 +8,10 @@ title: Widgets - application options
|
|||
|
||||
### File menu - reference
|
||||
|
||||
- **New empty file**: Adds a new, untyped, file to the source editor.
|
||||
- **New runnable module**: adds a new file with a `main()` function. See [runnables modules](features_runnables).
|
||||
- **New DUB script**: adds a new file with a `main()` function and an inline DUB description. The file can be executed as a script with **Run DUB single file package** or **Run DUB single file package outside**.
|
||||
- **New empty module**: Creates a new empty module.
|
||||
- **New runnable module**: Creates a new module with a `main()` function. See [runnables modules](features_runnables).
|
||||
- **New module from clipboard**: Creates a new module, immediatly filled with the clipboard content.
|
||||
- **New DUB script**: Creates a new module with a `main()` function and an embedded DUB receipt. The module can be executed as a script with **Run DUB single file package** or **Run DUB single file package outside**.
|
||||
- **Open file...**: Proposes to open a D source file from an open dialog.
|
||||
- **Open recent**: Displays the list of the most recently opened files.
|
||||
- **Close file**: Closes the current editor with an optional warning if its content is modified.
|
||||
|
|
|
@ -17,6 +17,7 @@ The page exposes unsorted options. In the future some of them might be moved to
|
|||
- **additionalPATH**: Used to defined more paths were the background tools can be found. Each item must be separated by a path separator (`:` under Linux and `;` under Windows).
|
||||
- **autoCheckUpdates**: If checked and if a newer release is available then a dialog proposes to open the matching html page on github.
|
||||
- **autoSaveProjectFiles**: If checked the sources are automatically saved before compilation.
|
||||
- **consoleProgram**: Allows to set the terminal emulator used to execute programs. By default XTerm is used and an error can occur if it's not setup. The setting is used by the [runnable modules](features_runnables), the [custom tools](widgets_custom_tools) and the project launcher. Under Windows this option is not used.
|
||||
- **coverModuleTests**: If checked then the coverage by the tests is measured and displayed in the messages after executing the action __File/Run file unittests__.
|
||||
- **dcdPort**: Sets the port used by the [completion daemon](features_dcd) server. `0` means the default value.
|
||||
- **dscanUnittests**: If checked the content of the `unittest` blocks are analyzed when using the action __File/Verify with Dscanner__. Do not activate if the results of the static analysis tend to generate irrelevant messages in the tests.
|
||||
|
|
|
@ -19,6 +19,7 @@ This category exposes the DUB options that are passed to the build tool each tim
|
|||
- **linkMode**: Specifies the way the compiler and linker are invoked.
|
||||
- **other**: Displays a list that can be filled with more switches. One item per line.
|
||||
- **parallel**: If checked, tries to build using several CPU.
|
||||
- **showConsole**: If checked, the [consoleProgram set in the global options](options_application) is shown and used to execute DUB.
|
||||
|
||||
See also [the official DUB command line reference](http://code.dlang.org/docs/commandline) for more detailed descriptions.
|
||||
|
||||
|
|
Loading…
Reference in New Issue