Added dot completion support for import statements
This commit is contained in:
parent
9c8295e013
commit
c86ab70b07
|
@ -11,6 +11,8 @@ import std.array;
|
|||
import std.conv;
|
||||
import std.stdio;
|
||||
import std.typecons;
|
||||
import std.path;
|
||||
import std.file;
|
||||
|
||||
import parser;
|
||||
import langutils;
|
||||
|
@ -294,6 +296,12 @@ struct AutoComplete
|
|||
auto index = assumeSorted(tokens).lowerBound(cursor).length - 1;
|
||||
Token t = tokens[index];
|
||||
size_t startIndex = findBeginningOfExpression(tokens, index);
|
||||
|
||||
if (startIndex - 1 < tokens.length && tokens[startIndex - 1] == TokenType.Import)
|
||||
{
|
||||
return importComplete(splitCallChain(tokens[startIndex .. index]));
|
||||
}
|
||||
|
||||
auto expressionType = getTypeOfExpression(
|
||||
splitCallChain(tokens[startIndex .. index]), tokens, cursor);
|
||||
|
||||
|
@ -307,6 +315,15 @@ struct AutoComplete
|
|||
return to!string(array(join(sort!"a.toLower() < b.toLower()"(app.data), "\n")));
|
||||
}
|
||||
|
||||
string importComplete(const(Token)[] tokens)
|
||||
{
|
||||
string part = tokens.map("a.value").join("/").array();
|
||||
foreach (path; context.importDirectories)
|
||||
{
|
||||
if (exists())
|
||||
}
|
||||
}
|
||||
|
||||
const(Token)[] tokens;
|
||||
CompletionContext context;
|
||||
}
|
||||
|
|
3
main.d
3
main.d
|
@ -164,7 +164,8 @@ void main(string[] args)
|
|||
importDirs ~= getcwd();
|
||||
auto tokens = args[1].readText().tokenize();
|
||||
auto mod = parseModule(tokens);
|
||||
auto context = new CompletionContext(mod);
|
||||
CompletionContext context = new CompletionContext(mod);
|
||||
context.importDirectories = importDirs;
|
||||
foreach (im; parallel(mod.imports))
|
||||
{
|
||||
auto p = findAbsPath(importDirs, im);
|
||||
|
|
Loading…
Reference in New Issue