D language IDE based on DlangUI
Go to file
Vadim Lopatin d6c7aa05d6 new project dialog 2015-12-07 17:05:33 +03:00
lib/win32 commit dcd-client for win32 2015-02-18 09:51:47 +03:00
libdparse integration with libdparse, initial version 2015-02-18 10:58:23 +03:00
src new project dialog 2015-12-07 17:05:33 +03:00
tools/disowntty add disowntty project; settings fixes; newproject 2015-12-04 10:02:18 +03:00
views add Spanish translation 2015-11-16 08:48:41 +03:00
workspaces fixes 2015-04-02 15:45:48 +03:00
.gitignore update .gitignore 2015-01-19 08:53:15 +03:00
.travis.yml Travis CI support 2015-01-15 15:39:04 +03:00
README.md refactoring 2015-04-07 12:06:09 +03:00
dlangide-monod-linux.dproj new project creation, initial version 2015-12-05 22:11:25 +03:00
dlangide-monod-linux.sln new project creation, initial version 2015-12-05 22:11:25 +03:00
dlangide.visualdproj updated project for VisualD 2015-11-05 12:07:43 +03:00
dlangide_msvc.visualdproj fixes 2015-12-04 14:05:22 +03:00
dub.json update dlangui dependency 2015-11-12 14:15:01 +03:00

README.md

Dlang IDE

Cross platform D language IDE written using DlangUI library.

Currently supported features:

  • Can open DUB (dub.json) projects
  • Shows tree with project source files
  • Can open and edit source files from project or file system in multi-tab editor
  • Build and run project with DUB
  • Build log highlight and navigation to place of error or warning by clicking on log line (contributed by Extrawurst)
  • DUB dependencies update
  • DUB package configuration selection (contributed by NCrashed)
  • Dependency projects are shown in workspace tree

Source editor features:

  • D language source code syntax highlight (basic)
  • Indent / unindent text with Tab and Shift+Tab or Ctrl+[ and Ctrl+]
  • Toggle line or block comments by Ctrl+/ and Ctrl+Shift+/
  • D source code autocompletion by Ctrl+Space or Ctrl+Shift+G (using DCD)
  • D source code Go To Definition by Ctrl+G or F12 (using DCD)
  • D source code Smart Indents
  • Select word by mouse double click

screenshot

GitHub page: https://github.com/buggins/dlangide

DlangUI project GitHub page: https://github.com/buggins/dlangui

Gitter Build Status PayPayl donate button

DCD integration

Hans-Albert Maritz (Freakazo) recently implementated DCD integration. For using of Autocompletion and Go To Definition, you need to install DCD. (For Win32, built dcd-server.exe and dcd-client.exe are included, and will be copied by DUB during build). dcd-client and dcd-server must be in the same directory as dlangide executable or in one of PATH dirs. DlangIDE starts its own copy of DCD daemon on port 9167.

Building DlangIDE

Build and run with DUB:

git clone https://github.com/buggins/dlangide.git
cd dlangide
dub run

If you see build errors, try to upgrade dependencies:

dub upgrade --force-remove
dub build --force

Needs DMD 2.066.1 or newer to build.

HINT: Try to open sample project Tetris, from workspaces/tetris with DlangIDE.

To develop in VisualD together with DlangUI, put this project on the same level as dlangui repository, and its dependencies.

Keyboard shortcut settings

Keyboard shortcuts settings support is added.

For linux and macos settings are placed in file

~/.dlangide/shortcuts.json

For Windows, in directory like

C:\Users\user\AppData\Roaming\.dlangide\shortcuts.json

If no such file exists, it's being created on DlangIDE start, filling with default values to simplify configuration.

Just edit its content to redefine some key bindings.

File format is simple and intuitive. Example:

{
    "EditorActions.Copy": "Ctrl+C",
    "EditorActions.Paste": "Ctrl+V",
    "EditorActions.Cut": "Ctrl+X",
    "EditorActions.Undo": "Ctrl+Z",
    "EditorActions.Redo": [
        "Ctrl+Y",
        "Ctrl+Shift+Z"
    ],
    "EditorActions.Indent": [
        "Tab",
        "Ctrl+]"
    ],
    "EditorActions.Unindent": [
        "Shift+Tab",
        "Ctrl+["
    ],
    "EditorActions.ToggleLineComment": "Ctrl+/",
    "EditorActions.ToggleBlockComment": "Ctrl+Shift+/"
}