dexed/wiki/wiki.txt

475 lines
28 KiB
Plaintext

Welcome to the Coedit Wiki, the documentation source for the small Windows & Linux IDE for the D programming language.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/coedit.win7.33.png) ![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/coedit.linux.kde.33.png)
# Menu reference
## File
- **"New empty file"**: adds a new, untyped file to the source editor.
- **"New runnable module"**: adds a new file with a main() procedure. See [runnable modules][lnk_runa].
- **"Open file..."**: open a D source file from a dialog. If the file is already opened then the matching editor gets the focus.
- **"Open recent"**: displays the list of the Most Recently Used (MRU) files.
- **"Close file"**: closes the current editor with an optional warning if its content is modified.
- **"Save file"**: saves the current editor to the disk.
- **"Save all"**: saves all the files currently opened in the source editor.
- **"Save file as..."**: save the current editor using a dialog.
- **"Export html..."**: export the current editor to a html file with html-based highlighting.
- **"Add file to project"**: adds the file matching to the current editor to the project. If the current editor has been created using **"New empty file"** or **"New runnable module"** then the operation fails.
- **"Compile file"**: compile the current file. See [runnable modules][lnk_runa].
- **"Compile file and run"**: compiles the current file and execute. See [runnable modules][lnk_runa].
- **"Compile file and run outside"**: compiles the current file and execute without redirection. See [runnable modules][lnk_runa].
- **"Compile file and run..."**: compiles the current file and execute with a set of options defined in a simple input-query dialog. The arguments must be separated with spaces and can include double quotes.
- **"Run compiled file"**: tries the execute the binary produced by a previous call to _Compile file_.
- **"Run file unittests"**: compiles and runs the current file with the options **-main -unittest**. If the application option _coverModuleTests_ is set then CE will also pass **-cov** to DMD and report in the messages the lines of code that are not covered by the unit tests. This action is not usable if the current module already contains a `main()` function.
- **"Set runnable switches"**: allows to modify the switches passed to DMD when compiling a runnable module. One switch by line, invalid or duplicated switches are removed, such as _-main_ and _-unittest_ since they are set with _Run file unittests_.
- **"Verify with Dscanner"**: verifies the current file with [Dscanner](https://github.com/Hackerpilot/Dscanner). Results are displayed in the [message widget][lnk_widg_msg].
- **"View in mini explorer"**: expands the [mini-explorer][lnk_widg_miniexpl] tree on the folder that contains the current file.
# Docking
Coedit interface is divided into a small dozen of dockable widgets. Except the code editor, each widget
can be dragged in another widget or to one of its edges. To avoid any error, the layout can be locked when right clicking a header:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/dock.lock.png)
Layouts can be saved or reloaded from the main menu:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/dock.save.png)
Docking can be customized in the [option editor][lnk_widg_opts]:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/optdock.png)
Note that the docking relies on a component that's in beta state and problems might be encountered:
- many small windows appear when CE is launched: the widgets are actually all independent forms that are created before being docked, under a Windows system they are visible for a second.
- space between the menu and the workspace: the splitter can be moved when pressing the <kbd>CTRL</kbd> key.
- strange looking layout after reloading (missing splitter between two widgets, or nothing between two splitters): close CE, delete the configuration file named _docking.xml_ from the [data folder][lnk_widg_opts], after what Coedit will start with the default layout.
- other problem: [file an issue][lnk_bugtracker].
# Widgets
## Editor widget
The _source editor widget_ is a standard code editor, specialized for highlighting D source files.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/sourceditor1.png)
#### Overview
- folding: curly brackets blocks, multi-line strings, block comments, nested block comments, DDoc comments blocks.
- colorization of the following categories: attributes, keywords, special keywords, numbers, symbols, comments, assembler, DDoc comments.
- current identifier markup, selection markup.
- standard keyboard navigation shortcuts <kbd>CTRL</kbd> + [<kbd>SHIFT</kbd> +] <kbd>LEFT</kbd> | <kbd>RIGHT</kbd>, <kbd>CTRL</kbd> + <kbd>HOME</kbd>, <kbd>CTRL</kbd> + <kbd>END</kbd> etc.
- macro recording and playback using <kbd>CTRL</kbd> + <kbd>SHIFT</kbd> + <kbd>R</kbd> (start or stop recording) or <kbd>CTRL</kbd> + <kbd>SHIFT</kbd> + <kbd>P</kbd> (play).
- synchro-edit (activated when clicking the pen icon located in the gutter, or with the shortcut <kbd>CTRL</kbd> + <kbd>E</kbd> and <kbd>CTRL</kbd> + <kbd>SHIFT</kbd> + <kbd>E</kbd>).
- zoom: <kbd>CTRL</kbd> + <kbd>WHEEL</kbd>, <kbd>CTRL</kbd> + <kbd>MIDDLE MB</kbd>, <kbd>CTRL</kbd> + <kbd>+</kbd> | <kbd>-</kbd> | <kbd>.</kbd>.
- display cache: for each document, the zoom ratio, the folding state and the caret position are saved between two sessions. A cache file has a fixed life-time of three months from its last modification.
- drag & drop editing.
- external modification tracking. Each time the focus is put on a document (switch document, show & hide application), Coedit verifies if its time stamp has changed.
- static macros.
- custom folded regions.
- huge amount of options.
- split view: two editors in one page.
- most recent location buffer: instead of bookmarks, the most recent caret positions are stored in a buffer. Positions can be recovered with the lateral mouse buttons (_X1_ & _X2_) or with the multimedia keyboard keys _next web page_ & _previous web page_.
#### Custom regions
The custom regions are defined in single line comments.
A region starts with a comment that ends with at least three hyphens and a plus symbol.
A region stops with a comment ending with at least four hyphens.
Two valid examples:
```D
// ctor/dtor -------------+
this(string s){}
this(uint u){}
~this(){}
// ------------------------
// operators overloads ---+
void opIndexAssign(size_t i; T t){}
T opIndex(size_t i){}
// ----
```
Regions are saved and reloaded with the editor cache. They give a clear and compact view of a module:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/editor.regions.png)
#### Static macros
The static macros can be described as *parameter-less code snippets*.
A static macro starts with the dollar symbol and ends with an alphabetic character.
For example after typing `$a`, `auto` is inserted.
Confer with the [source code](https://github.com/BBasile/Coedit/blob/master/src/ce_staticmacro.pas#L57) too see the pre-defined macros list.
Custom macros can be edited in the [options editor][lnk_widg_opts]:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/optmacros.png)
#### Editor options
Editor options are displayed in the [option editor][lnk_widg_opts].
They cover many aspects of the editor:
- highlighterDlang: options for D2 highlighter such as colors, font styles, folding, etc.
- highlighterText: options for generic highlighter such as colors, font styles, etc.
- ddocDelay, autoDotDelay: tweak how fast [DCD][lnk_dcd] features are.
- options1 & options2: about 50 boolean options to define if the special characters are shown, if the trailing spaces are trimmed, if the tabs are converted to spaces, etc.
- and much more.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/editor.options.png)
The shortcuts are editable from the [option editor][lnk_widg_opts], category _Shortcuts, Code editor_:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/editor.shortcuts.png)
#### Split view
The split view allows to pin one of the document to the right of the other documents.
To pin a document, open it in an editor and click the right-most toolbar button.
The other editors will get this document displayed at their right.
To unpin a document, select its initial page and click the same button.
The document to pin can be replaced on the fly, still using the same button, and even if the split view is already active.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/editor.splitview.png)
It's useful to display a module that contains the declarations of a library binding since it's not anymore necessary to change the editor page to verify the members of an enum or the parameters of a function.
Note that the action _jump to declaration_ (see [DCD][lnk_dcd]) is adapted so that the page index is not modified if the declaration definition is in the document that's pined to the right.
#### Helpers
The editor proposes two useful actions to (un)comment blocks of code.
The action _invert version all none_ changes the `version(none)` statements to `version(all)` statements and vice versa. When no selection is available this is applied to the whole document.
The action _comment selection_ adds or removes the `\\` located at the beginning of each line in the current selection.
Another important helper is the brace auto-closing. By default it's not activated. Several modes are proposed:
- _autoCloseNever_: deactivate the feature.
- _autoCloseAtEof_: closes a brace after a `{` located at the end of file.
- _autoCloseAlways_: closes a brace after a `{`.
- _autoCloseLexically_: closes a brace after a `{` if the count of braces pairs is odd.
- _autoCloseOnNewLineEof_: closes a brace after a `{` located at the end of file but only after <kbd>ENTER</kbd>.
- _autoCloseOnNewLineAlways_: closes a brace after a `{` but only after <kbd>ENTER</kbd>.
- _autoCloseOnNewLineLexically_: closes a brace on <kbd>ENTER</kbd> and if the count of braces pairs is odd.
## Find & replace widget
The _find and replace_ widget allows to find and replace text patterns in the focused source editor.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/search1.png)
- first field: the pattern to find.
- second field: the pattern used as replacement, only active when **"replace with"** is checked.
- whole word: only search for the whole pattern.
- backward: search from the current position to the top.
- from cursor: when unchecked, the operation always starts from the top of the document.
- case sensitive: when unchecked, the case is ignored.
- prompt: a confirmation is required to replace a match.
- allow regex: when checked, the search is performed by a regex engine (which doesn't mean that the pattern to find has to be a regex).
By default <kbd>CTRL</kbd> + <kbd>F</kbd> is used to pass the current identifier to the first field and <kbd>F3</kbd> to execute a search.
_Find all_ results are displayed in the [messages widget][lnk_widg_msg], with a context and they are clickable.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/search2.png)
The scope of _Find all_ can be set, either to the current editor or to the whole project, by clicking the icon at the right.
Notes:
- To find the declaration of a symbol, <kbd>Ctrl</kbd> + <kbd>MB Left</kbd> or the [symbol list][lnk_widg_symlist] are faster.
- To rename a variable or a type, local identifier renaming (<kbd>Ctrl</kbd> + <kbd>F2</kbd>) can be more accurate than _Replace all_ since this uses the semantic.
## Project configuration widget
The project configuration widget is a powerful editor for the compiler options. By design it uses an "_Object Inspector_" GUI element.
If this choice has avoided a painful GUI designing work, it also perfectly represents the way the classes that encapsulates the compiler options have been programmed. (see _ce_dmdwrap.pas_).
The following paragraphs specify exactly which _DMD_ switch is generated for an option,
however these values are not anymore exact when CE is tweaked to compile its project format with _LDC2_ since
the _DMD_ switches are translated for _LDC2_ through the compatibility tool _LDMD2_.
- ![](https://raw.githubusercontent.com/BBasile/Coedit/master/icons/cog/cog_add.png): adds a new compiler configuration. An input-query dialog allows to directly set its name (see the above note about the configuration name).
- ![](https://raw.githubusercontent.com/BBasile/Coedit/master/icons/cog/cog_delete.png): removes the current compiler configuration.
- ![](https://raw.githubusercontent.com/BBasile/Coedit/master/icons/cog/cog_go.png): clones the current compiler configuration.
- ![](https://github.com/BBasile/Coedit/blob/master/icons/link/link_break.png) **/** ![](https://github.com/BBasile/Coedit/blob/master/icons/link/link.png): de/activates the synchro-mode. When activated, each particular option edited will be copied to the other configurations.
Notes:
- changing the configuration name is only possible in the section [**All Categories**](https://github.com/BBasile/Coedit/wiki#all-categories), field **name**.
#### General options:
The general options are common to each configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.general1.png)
- Configuration index: selects a configuration by its index. This property exists only for the project persistence.
To select a configuration, rather uses the project inspector or the combo-box at the top of the widget.
- libraryAliases: shows a small editor used to specify the aliases of the libraries used by the project.
One item per line. An item text must match to an entry of the [_libman_][lnk_widg_lib]. It avoids the addition of the **-I** options and the additional sources.
When dependencies are complex, it's possible to select all the entries by setting the first line of the editor to a single asterisk `*`.
Thanks to this shortcut you don't have to remember if an aliased library is using another library but be warned that compilation speed can be impacted.
Note that unless the project _binaryKind_ is set to _executable_ or _sharedlib_ the static libraries selected from this list are not linked.
- RootFolder: the project file is not necessarily indicating the root of the project folder.
This field can be used to specify another one, either relative or absolute. This is useful to run a custom tool using the *CPR* [symbolic string][lnk_sym] (e.g: git, recursive cleaning).
- Sources: shows a dialog used to edit the filenames of the project sources. Relative paths are automatically handled. Only one item must stand by line.
It's recommended to use the [project inspector][lnk_widg_prjinsp] instead of this archaic editor. To include a folder of source it's also possible to specify a path with a asterisk in the **Paths** options, **extraSources** editor.
This avoids to manually remove the obsolete source or to manually add the new source files.
#### Message options:
Groups the options related to the messages emitted by the compiler.
These options are defined per-configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.messages1.png)
- deprecationHandling: sets the way deprecations must be handled (among _silent_ or _error_, **-ds** or **-de**, the default value, _warning_, does not produce a switch)
- quiet: sets if non essential compiler messages are skipped. (**-quiet**)
- showColumnsNumber: sets if the horizontal position is shown in the messages. (**-vcolumns**)
- showHiddenAlloc: if sets then display potentially hidden GC allocations. (**-vgc**)
- tlsInformations: sets if thread local storage information are displayed. (**-vtls**)
- verbose: sets if verbose. (**-v**)
- warnings: sets if the warnings are displayed. (**-w**)
- warningsAsInfo: defines if the warnings don't prevent the project to be compiled.
#### Debugging options:
Groups the options related to the debugging information added to the output binary.
These options are defined per-configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.debug1.png)
- codeviewCformat: generate debug info using the _codeview_ format. (**-gc**)
- codeviewDexts: adds D _codeview_ extensions. (**-g**)
- debug: sets if debug information are generated. (**-debug**)
- debugLevel: sets the debugging level. (**-debug=x**)
- debugIdentifiers: list of debug identifiers. (for each item **-debug=item** is generated). One item per line.
- generateMapFile: sets if a map file is generated. (**-map**)
#### Documentation options:
Groups the options related to the generation of the project documentation.
These options are defined per-configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.doc1.png)
- documentationDirectory: sets the directory where the documentation is generated. It can be a relative path. (**-Dd**)
- generateDocumentation: sets if the documentation is generated. This field is constrained to _true_ if the doc path is defined. (**-D**)
- generateJSON: sets if the JSON documentation is generated. This field is constrained to _true_ if the JSON file name is defined. (**-X**)
- JSONFilename: sets the JSON file name. (**-Xf**)
#### Output options:
Groups the options related to the code generation.
These options are defined per-configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.output1.png)
- addMain: adds an empty _main()_ procedure. (**-main**)
- alwaysLinkStaticLibs: under Windows this option forces to link a static library selected in the _LibraryAliases_ even if not required (for example if the project is itself a static library).
- binaryKind: sets the compiler output kind among: **"staticlib"**, **"sharedlib"**, **"executable"** and **"object"**. (it matches respectively to **-lib**, **-shared**, nothing, **-c**).
- boundsCheck: sets the bounds checking mode, among **"alwaysON"**, **"alwaysOFF"** and **"safeOnly"**. (**-boundscheck=on** or **-boundscheck=off** or **-boundscheck=safeonly**). The switch is not generated when it's a default value.
- generateStackFrame: forces the generation of stack frames. (**-gs**)
- inlining: try to inline functions and procedures. (**-inline**)
- Optimizations: optimize. (**-O**)
- release: do not generate the assertions and the contracts. (**-release**)
- targetKind: sets the target registry size, among **auto**(same as current OS) **os32** (targets a 32 bit OS) and **os64** (targets a 64 bit OS). It should usually remain to **auto** however this can be used to verify the portability of the project. (**-m32**, **-m64**)
- unittest: generates the unittest code. (**-unittest**)
- versionIdentifiers: list of version identifiers. One per line, the switches **-version=** are added automatically. An entry can be disabled by prefixing it with a semicolon or a pair of backslash.
#### Other Options:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.others1.png)
Most of the existing switches are hard-coded however for the few missing ones this field can be used (e.g: the linker flags). In the dialog respect the following rules:
- the switches must be included. (e.g: an additional version identifier must include the whole prefix _-version=_)
- an entry must not be double quoted, even if it contains a file name with spaces. (they are automatically added later)
- one item per line.
- no leading or trailing spaces.
- an entry can be disabled if it's prefixed by a semicolon or a by pair of backslash.
These custom switches are defined per-configuration.
#### Path options:
Groups the options defining the location of the files used or produced by the compiler.
These options are defined per-configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.paths1.png)
- exclusions: paths or files to exclude from the main sources. The items can contain [symbolic strings [lnk_sym]. The items can be global [match expressions](https://en.wikipedia.org/wiki/Glob_(programming)).
- extraSources: either _*.lib_, _*.a_, _*.o_ and _*.obj_, files or _*.d_, _*.di_ source files. If a path that ends with an asterisk is added (e.g: _folderA\folderB\*_) then every source files located in this folder and its sub-folders will be passed to the compiler.
- forceExtension: when set, the output filename has always the right file extension. This option is useful when the _outputFilename_ contains periods but no extension (example: `-offoo.bar` under linux generates the executable `foo.bar` but under windows and if the option is set `foo.bar.exe`).
- importModulePaths: a list of paths where _DMD_ has to look for the libraries sources. (**-I**)
- importStringPaths: a list of paths used to solve the `import(file)` expressions. (**-J**)
- objectDirectory: the directory where object files (_*.o_ or _*.obj_) must be written. (**-od**)
- outputFilename: the output filename. The identifier should only include a period to specify a non default extension otherwise it prevents _DMD_ to add the default one. (**-of**)
#### Pre/Post build process options:
They define the options of two processes and a bunch of commands, respectively executed before and after the compilation.
These options are defined per-configuration.
These options are not compatible with the system of _base_ & _overridden_ configuration.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.preprocess1.png)
- executable: the executable file name. If the system cannot solve its path using the environment variables then it must be included.
It can also be represented by a [symbolic string][lnk_sym].
- options: a set of options. Activate **poUsesPipe** and **poStdErrToOutput** if you wish to redirect the process output to the messages widget.
- parameters: a list of switches and arguments. As usual, one item per line, no double quotes.
- showWindow: sets how the program window is displayed.
- simpleCommands: additionally to the process, a list of shell commands can be specified, they are executed before the pre/post process. The commands have fixed options: always piped to the message widget, the working directory is always the project path.
The commands can contain [symbolic strings][lnk_sym].
The pre-build process is always executed, even if the project has no source files.
This can be used as a trick to compile from another tool.
An interesting post-build process feature is that it can be set on the executable that's just been build.
This is possible when the post compilation process _executable_ is set to the [symbolic string][lnk_sym] **`<CPO>`**, which is expanded to the name of the file produced by the compiler.
#### Run options:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.runoptions1.png)
They define the options applied when running the project output (e.g: menu **"project"**, **"compile and run"**).
The _executable_ field is not present because it relies on the project parameters (**-of** for a CE project and the combination of _targetPath_ with _targetName_ for a DUB project).
If the output is piped then the [process input widget][lnk_widg_procinp] can be used to pass the input to the program being executed.
These options are defined per-configuration.
These options are not compatible with the system of _base_ & _overridden_ configuration.
#### All categories
Unfiltered options, sub categories can be expanded or collapsed.
- name: the current configurations name.
- isBaseConfiguration: when set, the current configuration defines the default options of a configuration which is set as overridden.
- isOverriddenConfiguration: when set, the options of the current configuration are only handled if they don't match to the base configuration or if the base configuration is not set. This system avoids to edit using the synchro-mode.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/projconf.all1.png)
# Detailed and illustrated tutorials
## New project flow
In this tutorial will see how to start a _Coedit_ project from scratch.
- Start _Coedit_ or create a new project.
- In the **File** menu, click **New empty file**.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_1.png)
- Add the `main()` function.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_2.png)
- Save the file where you wish to, using the action **Save as**.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_3.png)
- Still in the **File** menu, click **Add file to project**. The file we've just saved will be added to the project sources.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_4.png)
- At this time, the project can be already compiled, even without being saved.
However save it somewhere. In the project inspector, the source path will be displayed relatively to the project location.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_5.png)
- You can now compile the project.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut1_6.png)
## Using a runnable module as an interactive command interpreter
In this tutorial, we'll see that a Coedit runnable module can
be used to program an interactive command interpreter, completely
integrated to the IDE thanks to the automatic redirection of
the input and the output streams.
Create a new runnable module.
In a first time we need a loop that waits for a command to process.
The input is split into command and arguments.
The raw input is used to test the program termination:
```D
module interactive.command.interpreter;
import std.stdio;
import std.array;
string[] arguments;
string command;
void main(string[] args)
{
string input;
while (true)
{
input = readln;
if (input == "exit\n") return;
// split command and args
auto s = split(input);
if (s.length){
command = s[0];
if (s.length > 1)
arguments = s[1..$];
else
arguments.length = 0;
}
}
}
```
Now we add a bunch of trivial command processors. They are dispatched with the help of an associative array:
```D
module interactive.command.interpreter;
import std.stdio;
import std.array;
string[] arguments;
string command;
void function()[string] dispatcher;
static this(){
dispatcher["hello"] = &hello;
dispatcher["showargs"] = &showArgs;
}
void showArgs(){
foreach(arg;arguments) writeln(arg);
}
void hello(){
writeln("hello world");
}
void main(string[] args)
{
string input;
while (true)
{
input = readln;
if (input == "exit\n") return;
// split command and args
auto s = split(input);
if (s.length){
command = s[0];
if (s.length > 1)
arguments = s[1..$];
else
arguments.length = 0;
if (command in dispatcher)
dispatcher[command]();
else
writeln("unrecognized command: ", command);
stdout.flush;
}
}
}
```
You can now click, in the **run** menu **compile and run file**.
Use the [process input widget][lnk_widg_procinp] to pass a command and their optional arguments to the interpreter,
for example `hello` and press <kbd>ENTER</kbd>:
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut4_1.png)
Then, if not already done, save the module written for this tutorial and type
`showargs <CFF> <CAF> <CAP>` and press <kbd>ENTER</kbd>, the [symbolic strings][lnk_sym] will be expanded by the process-input-widget before being
sent as input.
![](https://raw.githubusercontent.com/BBasile/CoeditWikiData/master/tut4_2.png)
To finish type "exit" and press <kbd>ENTER</kbd>.