mirror of
https://github.com/dlang-community/D-Scanner.git
synced 2025-04-28 06:10:01 +03:00
Added --ctags option to generate tags file
This commit is contained in:
parent
066b298b99
commit
79f59bb6f4
5 changed files with 124 additions and 7 deletions
|
@ -28,6 +28,14 @@ immutable string[] versions = ["AIX", "all", "Alpha", "ARM", "BigEndian", "BSD",
|
|||
"Win64", "Windows", "X86", "X86_64"
|
||||
];
|
||||
|
||||
/+/**
|
||||
* Returns: indicies into the token array
|
||||
*/
|
||||
Tuple!(size_t, size_t) findEndOfStatement(const Token[] tokens, size_t index, out size_t)
|
||||
{
|
||||
|
||||
}+/
|
||||
|
||||
string[] callChainBackwards(const Token[] tokens, size_t index)
|
||||
{
|
||||
if (index == 0)
|
||||
|
@ -220,12 +228,21 @@ struct AutoComplete
|
|||
auto index = assumeSorted(tokens).lowerBound(cursor).length - 2;
|
||||
Token t = tokens[index];
|
||||
if (t.startIndex + t.value.length + 1 != cursor)
|
||||
return [];
|
||||
if (tokens[index] == TokenType.tVersion)
|
||||
return "";
|
||||
switch (tokens[index].type)
|
||||
{
|
||||
case TokenType.tVersion:
|
||||
return to!string(array(join(map!`a ~ "?1"`(versions), " ")));
|
||||
case TokenType.tIf:
|
||||
case TokenType.tCast:
|
||||
case TokenType.tWhile:
|
||||
case TokenType.tFor:
|
||||
case TokenType.tForeach:
|
||||
case TokenType.tSwitch:
|
||||
return "";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
string dotComplete(size_t cursor)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue