The D Completion Daemon is an auto-complete program for the D programming language
Go to file
Hackerpilot 154aa9a72d Fixed issue with missing argument to writefln 2013-09-01 03:25:14 -07:00
dscanner@ce53b1643b Fixes #23, among other things 2013-09-01 00:31:56 +00:00
editors Issue #8: Must use binary popen to avoid CRLF screwing everything up. 2013-09-01 03:01:46 -07:00
msgpack-d@40c797cb8a Can sometimes autocomplete version, scope, and __traits 2013-07-16 23:57:41 -07:00
.gitignore Added preliminary .gitignore file 2013-08-18 17:24:11 -07:00
.gitmodules added lumen as ktexteditor plugin 2013-08-19 18:52:07 +02:00
License.txt Decided on GPL3 for the project 2013-07-19 16:09:34 -07:00
README.md On Windows, look for config in dcd.conf, on posix default to ~/.config/dcd 2013-08-18 17:24:02 -07:00
actypes.d Fixes #23, among other things 2013-09-01 00:31:56 +00:00
acvisitor.d Fixes #23, among other things 2013-09-01 00:31:56 +00:00
autocomplete.d Fixes #23, among other things 2013-09-01 00:31:56 +00:00
build.bat Issue #8 2013-09-01 02:23:01 -07:00
build.sh fixed build.sh 2013-08-17 18:35:58 +02:00
client.d Fixed issue with missing argument to writefln 2013-09-01 03:25:14 -07:00
constants.d spaces -> tabs 2013-08-18 13:03:09 +00:00
messages.d Support alias declarations 2013-08-14 21:30:41 +00:00
modulecache.d Merge pull request #17 from dymk/windows-fixes 2013-08-18 17:27:04 -07:00
server.d Issue #8: Must use binary popen to avoid CRLF screwing everything up. 2013-09-01 03:01:46 -07:00
teaser.png Udated readme. Also added a change that was supposed to be in the last commit 2013-08-08 02:46:43 +00:00

README.md

#Overview The D Completion Daemon is an auto-complete program for the D programming language.

Teaser

DCD consists of a client and a server. The client (dcd-client) is used by a text editor script or 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 This program is still in an alpha state.

  • Working:
    • Autocompletion of properties of built-in types such as int, float, double, etc.
    • Autocompletion of __traits, scope, and extern arguments
    • Autocompletion of enums
    • Autocompletion of class, struct, and interface instances.
    • Display of call tips for functions, constructors, and variables of function type
    • alias declarations
    • import statement completions
  • Not working:
    • Automatic starting of the server by the client
    • Windows support (I don't know that it won't work, but this program is not tested on Windows yet)
    • UFCS
    • Autocompletion of declarations with template arguments
    • Fields inherited from super classes or implemented interfaces.
    • auto declarations
    • alias this
    • Determining the type of an enum member when no base type is specified, but the first member has an initialaizer
    • Public imports
    • That one feature that you REALLY needed

#Setup

  1. Run git submodule update --init after cloning this repository to grab the MessagePack library and the parser from DScanner.
  2. run the build.sh script to build the client and server.
  3. Configure your text editor to call the dcd-client program. See the editors folder for directions on configuring your specific editor.
  4. Start the dcd-server program before editing code.

#Client

##Get autocomplete information The primary use case of the client is to query the server for autocomplete information. To do this, provide the client with the file that the user is editing along with the cursor position (in bytes).

dcd-client -c123 sourcefile.d

This will cause the client to print a listing of completions to stdout. The client will print either a listing of function call tips, or a listing of of completions depending on if the cursor was directly after a dot character or after a left parethesis.

The file name is optional. If it is not specified, input will be read from stdin.

###Dot completion When the first line of output is "identifiers", the editor should display a completion list. ####Output format A line containing the string "identifiers" followed by the completions that are available, one per line. Each line consists of the completion name folled by a tab character, followed by a completion kind #####Completion kinds

  • c - class name
  • i - interface name
  • s - struct name
  • u - union name
  • v - variable name
  • m - member variable name
  • k - keyword, built-in version, scope statement
  • f - function or method
  • g - enum name
  • e - enum member
  • p - package name
  • M - module name

####Example output identifiers parts v name v location v qualifier v kind v type v resolvedType v calltip v getPartByName f

####Parenthesis completion When the first line of output is "calltips", the editor should display a function call tip. #####Output format A line containing the string "calltips", followed by zero or more lines, each containing a call tip for an overload of the given function. #####Example output calltips ACSymbol findSymbolInCurrentScope(size_t cursorPosition, string name)

##Clear server's autocomplete cache dcd-client --clearCache

##Add import search path Import paths can be added to the server without restarting it. To accomplish this, run the client with the -I option:

dcd-client -Ipath/to/imports

#Server The server must be running for the DCD client to provide autocomplete information. In future versions the client may start the server if it is not running, but for now it must be started manually.

Configuration Files

The server will attempt to read the file ~/.config/dcd on Posix systems, or dcd.conf on Windows in the current working directory on startup. If it exists, each line of the file is interpreted as a path that should be searched when looking for module imports.

##Shut down the server The server can be shut down by running the client with the correct option:

dcd-client --shutdown

Import directories

Import directories can be specified on the command line at startup:

dcd-server -I/home/user/code/one -I/home/user/code/two

Port number

The --port or -p option lets you specify the port number that the server will listen on.