Difference between revisions of "DCD"

From D Wiki
Jump to: navigation, search
(remove mention of my fork)
m (See also: External links)
 
Line 20: Line 20:
 
* get use of a symbol in a whole module.
 
* get use of a symbol in a whole module.
  
== See also ==
+
== External links ==
  
* DCD [https://github.com/dlang-community/DCD home page]
+
* [https://github.com/dlang-community/DCD DCD home page]
  
 
[[Category:Text editors]]
 
[[Category:Text editors]]

Latest revision as of 02:02, 8 February 2018

Introduction

DCD, the D Completion Daemon, is a cross platform auto-complete service for the D programming language written by Brian Schott.

It's used by several text editors and IDE to get IDE-grade features.

Technical details

The software is itself written in D. The service is based on the socket communication between a server and a client.

Features

Vanilla

  • completion of identifiers (types, variables), version identifiers.
  • find symbol declaration.
  • retrieve the DDOC comment of a symbol.
  • retrieve the function parameters.
  • get use of a symbol in a whole module.

External links