Updated readme

This commit is contained in:
John Maschmeyer 2012-10-17 18:57:37 -05:00
parent ad273ea869
commit 905e6d9d3e
1 changed files with 5 additions and 1 deletions

View File

@ -2,9 +2,10 @@
Dscanner is a tool used to analyze D source code. Dscanner is a tool used to analyze D source code.
### Options ### Options
* **--dotComplete** _sourceFile_ _cursorPosition_ - Provide autocompletion for the * **--dotComplete** [--extended] _sourceFile_ _cursorPosition_ - Provide autocompletion for the
insertion of the dot operator. The cursor position is the character position in insertion of the dot operator. The cursor position is the character position in
the **file**, not the position in the line. the **file**, not the position in the line.
When the extended option is included, display function completions with their full signature.
* **--sloc** _sourceFiles_ - count the number of logical lines of code in the given * **--sloc** _sourceFiles_ - count the number of logical lines of code in the given
source files. source files.
* **--json** _sourceFile_ - Generate a JSON summary of the given source file * **--json** _sourceFile_ - Generate a JSON summary of the given source file
@ -38,6 +39,9 @@ present.
foo v foo v
bar f bar f
With the extended completion syntax:
bar f : [#void#]bar(<#int x#>, <#int y#>)
##### Supported kinds ##### Supported kinds
* c -- class names * c -- class names
* i -- interface names * i -- interface names