mirror of https://gitlab.com/basile.b/dexed.git
doc
This commit is contained in:
parent
438719a67e
commit
1f25aa0325
|
@ -11,11 +11,11 @@ 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 redirect to the release page on github.
|
||||
- **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.
|
||||
- **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](feaures_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__.
|
||||
- **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.
|
||||
- **flatLook**: Doesn't draw the buttons shape unless they're hovered by the mouse.
|
||||
- **floatingWidgetOnTop**: Keeps the widgets that are not docked on top of the application window.
|
||||
- **maxReventDocuments**: Sets how many entries can be stored in __File/Open recent file__.
|
||||
|
@ -23,5 +23,5 @@ The page exposes unsorted options. In the future some of them might be moved to
|
|||
- **maxReventProjectsGroups**: Sets how many entries can be stored in __Projects group/Open recent group__.
|
||||
- **nativeProjectCompiler**: Sets [which compiler](options_compilers_paths) is used to compile a project that has the [CE format](widgets_ce_project_editor).
|
||||
- **reloadLastDocuments**: Sets if the sources, the project, and the group that were opened on exit are reloaded automatically.
|
||||
- **showBuildDUration**: Sets if the duration of a project build is measured.
|
||||
- **splitterScrollSpeed**: Sets how fast the splitters are moved when using the scroll wheel.
|
||||
- **showBuildDuration**: Sets if the duration of a project build is measured.
|
||||
- **splitterScrollSpeed**: Sets how fast the splitters are moved when the scroll wheel is used.
|
|
@ -4,11 +4,11 @@ title: Options - DUB build
|
|||
|
||||
#### Editor pages
|
||||
|
||||
This category exposes the options of the page control used to host the code editors.
|
||||
This category exposes the options of the page control that hosts the code editors.
|
||||
|
||||

|
||||
|
||||
- **detectModuleName**: Defines what will be displyaed in the tabs. If sets then a module is lexed in order to find its [module declaration](https://dlang.org/spec/module.html#ModuleDeclaration). Can be deactivated on slowest machines.
|
||||
- **detectModuleName**: Defines what will be displayed in the tabs. If set modules are lexed in order to find their [module declaration](https://dlang.org/spec/module.html#ModuleDeclaration). Can be deactivated on slowest machines.
|
||||
- **moveLeft**: Sets the shortcut used to move a page to left.
|
||||
- **moveRight**: Sets the shortcut used to move a page to right.
|
||||
- **nextPage**: Sets the shortcut used to select the next page.
|
||||
|
|
|
@ -8,8 +8,8 @@ title: Widgets - project groups
|
|||
|
||||
#### Description
|
||||
|
||||
Project groups ease the way to work with several projects, it's easier to activate a one, recompile it and to go back to another one.
|
||||
A group can include any project whose the format is handled by Coedit.
|
||||
Project groups allow to work with several projects. It's easier to activate one, to recompile it and to go back to another one.
|
||||
A group can include any project whose the format is handled by Coedit (Dub JSON, Sub SDL and CE formats).
|
||||
|
||||
Another interesting feature is that the groups can be build by a single click, in parallel, sequentially or using wait points which are defined for each item in the group. When working with static libraries, this system allows faster builds.
|
||||
|
||||
|
@ -19,8 +19,8 @@ The actions operated on the group are available from the **Projects group** menu
|
|||
|
||||

|
||||
|
||||
The groups don't affect the workflow and the feature can be totally ignored to preserve the way CE worked in version 1 and 2.
|
||||
A project is not part of the group until it's explicitly added. The project that has this independent status is called the _Free Standing Project_ (FSP).
|
||||
The groups don't affect the workflow and the feature can be totally ignored.
|
||||
A project is not part of the group until it's explicitly included. The project that has this independent status is called the _Free Standing Project_ (FSP).
|
||||
The FSP is actually a project, as it got handled in the previous versions.
|
||||
|
||||
#### Toolbar
|
||||
|
@ -30,7 +30,7 @@ The FSP is actually a project, as it got handled in the previous versions.
|
|||
- <img src="{%include icurl%}arrow/arrow_up.png" class="tlbric"/>: Moves the selected project to the top. This modifies the order of construction.
|
||||
- <img src="{%include icurl%}arrow/arrow_down.png" class="tlbric"/>: Moves the selected project to the bottom. This modifies the order of construction.
|
||||
- <img src="{%include icurl%}arrow/arrow_divide.png" class="tlbric"/>: When the last icon indicates this state and if the group is build using the wait points then this project is build in a new parallel process. An async point is often used for the static libraries.
|
||||
- <img src="{%include icurl%}arrow/arrow_join.png" class="tlbric"/>: When the last icon indicates this state and if the group is build using the wait points then this project is not build until the previous project are build. A wait point is often used for the last item since the binaries produced by the other projects have to be linked in.
|
||||
- <img src="{%include icurl%}arrow/arrow_join.png" class="tlbric"/>: When the last icon indicates this state and if the group is build using the wait points then this project is not build until the previous projects are build. A wait point is often used for the last item since the binaries produced by the other projects have to be linked in.
|
||||
|
||||
The field at the bottom indicates the status of the FSP.
|
||||
|
||||
|
|
Loading…
Reference in New Issue