From 905e6d9d3e00a6161663d7e70fbe0a0b1774a3b7 Mon Sep 17 00:00:00 2001 From: John Maschmeyer Date: Wed, 17 Oct 2012 18:57:37 -0500 Subject: [PATCH] Updated readme --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d199d7e..79dc22d 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,10 @@ Dscanner is a tool used to analyze D source code. ### 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 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 source files. * **--json** _sourceFile_ - Generate a JSON summary of the given source file @@ -38,6 +39,9 @@ present. foo v bar f +With the extended completion syntax: + bar f : [#void#]bar(<#int x#>, <#int y#>) + ##### Supported kinds * c -- class names * i -- interface names