mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-27 13:49:53 +03:00
Update readme and parser dependency
This commit is contained in:
parent
64503a6801
commit
c6e288a8e3
2 changed files with 14 additions and 8 deletions
20
README.md
20
README.md
|
@ -5,12 +5,18 @@ The D Completion Daemon is an auto-complete program for the D programming langua
|
||||||
|
|
||||||
(The above is a screenshot of [Textadept](http://foicica.com/textadept/))
|
(The above is a screenshot of [Textadept](http://foicica.com/textadept/))
|
||||||
|
|
||||||
DCD consists of a client and a server. The client (dcd-client) is used by a text editor script or from the command line.
|
DCD is not an IDE. DCD is designed to provide autocompletion for your favorite
|
||||||
The server (dcd-server) is responsible for caching imported files, calculating autocomplete information, and sending it
|
text editor. If you are looking for an IDE, try [one of these](http://wiki.dlang.org/IDEs).
|
||||||
back to the client.
|
|
||||||
|
DCD consists of a client and a server. The client (dcd-client) is almost always
|
||||||
|
used through a text editor script or plugin, though it can be used from the
|
||||||
|
command line. The server (dcd-server) is responsible for caching imported files,
|
||||||
|
calculating autocomplete information, and sending it back to the client.
|
||||||
|
|
||||||
#Status
|
#Status
|
||||||
This program is reasonably stable.
|
This program is reasonably stable. Please report problems on the Github issue
|
||||||
|
tracker. Please be sure that you have read the documentation before filing an
|
||||||
|
issue.
|
||||||
|
|
||||||
* Working:
|
* Working:
|
||||||
* Autocompletion of properties of built-in types such as int, float, double, etc.
|
* Autocompletion of properties of built-in types such as int, float, double, etc.
|
||||||
|
@ -24,11 +30,11 @@ This program is reasonably stable.
|
||||||
* *import* statement completions
|
* *import* statement completions
|
||||||
* Display of documentation comments in function call tips
|
* Display of documentation comments in function call tips
|
||||||
* *alias this*
|
* *alias this*
|
||||||
|
* *auto* declarations (Mostly)
|
||||||
* Not working:
|
* Not working:
|
||||||
* Automatic starting of the server by the client
|
* Automatic starting of the server by the client
|
||||||
* UFCS
|
* UFCS suggestions
|
||||||
* Autocompletion of declarations with template arguments
|
* Autocompletion of declarations with template arguments (This will work to some extent, but it won't do things like replace T with int)
|
||||||
* *auto* declarations
|
|
||||||
* Determining the type of an enum member when no base type is specified, but the first member has an initialaizer
|
* Determining the type of an enum member when no base type is specified, but the first member has an initialaizer
|
||||||
* That one feature that you *REALLY* needed
|
* That one feature that you *REALLY* needed
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit d9fb61d666304a4fcede0b583202fde3e0498785
|
Subproject commit acb6b43655b1144fbcaf08ec0442a81143cdb569
|
Loading…
Add table
Add a link
Reference in a new issue