From 224349ac9c80ce2c9ce0521f27e1d9ef5228e8ad Mon Sep 17 00:00:00 2001 From: John Maschmeyer Date: Tue, 16 Oct 2012 18:54:11 -0500 Subject: [PATCH] If no file is specified for --dotComplete or --parenComplete, read from stdin instead --- main.d | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/main.d b/main.d index 65ad307..5ea47fc 100644 --- a/main.d +++ b/main.d @@ -172,7 +172,27 @@ void main(string[] args) importDirs ~= dirName(args[1]); else importDirs ~= getcwd(); - auto tokens = args[1].readText().tokenize(); + bool useStdin = false; + try + { + to!size_t(args[1]); + useStdin = true; + } + catch(ConvException e) {} + Token[] tokens; + if (useStdin) + { + string f; + char[] buf; + while (stdin.readln(buf)) + f ~= buf; + tokens = f.tokenize(); + } + else + { + tokens = args[1].readText().tokenize(); + args.popFront(); + } auto mod = parseModule(tokens); CompletionContext context = new CompletionContext(mod); context.importDirectories = importDirs; @@ -185,9 +205,9 @@ void main(string[] args) } auto complete = AutoComplete(tokens, context); if (parenComplete) - writeln(complete.parenComplete(to!size_t(args[2]))); + writeln(complete.parenComplete(to!size_t(args[1]))); else if (dotComplete) - writeln(complete.dotComplete(to!size_t(args[2]))); + writeln(complete.dotComplete(to!size_t(args[1]))); return; }