Fix autocomplete when cursor is inside a comment or string
This commit is contained in:
parent
831ded10d0
commit
f23c38f8ae
|
@ -238,10 +238,9 @@ struct AutoComplete
|
||||||
|
|
||||||
string parenComplete(size_t cursor)
|
string parenComplete(size_t cursor)
|
||||||
{
|
{
|
||||||
auto index = assumeSorted(tokens).lowerBound(cursor).length;
|
auto index = assumeSorted(tokens).lowerBound(cursor).length - 2;
|
||||||
if (index > 2)
|
Token t = tokens[index];
|
||||||
index -= 2;
|
if (t.startIndex + t.value.length + 1 != cursor)
|
||||||
else
|
|
||||||
return [];
|
return [];
|
||||||
if (tokens[index] == TokenType.tVersion)
|
if (tokens[index] == TokenType.tVersion)
|
||||||
{
|
{
|
||||||
|
@ -252,12 +251,11 @@ struct AutoComplete
|
||||||
|
|
||||||
string dotComplete(size_t cursor)
|
string dotComplete(size_t cursor)
|
||||||
{
|
{
|
||||||
auto index = assumeSorted(tokens).lowerBound(cursor).length;
|
auto index = assumeSorted(tokens).lowerBound(cursor).length - 2;
|
||||||
if (index > 2)
|
Token t = tokens[index];
|
||||||
index -= 2;
|
if (t.startIndex + t.value.length + 1 != cursor)
|
||||||
else
|
|
||||||
return "";
|
return "";
|
||||||
auto t = tokens[index];
|
stderr.writeln(t);
|
||||||
string[] chain = callChainBackwards(tokens, index);
|
string[] chain = callChainBackwards(tokens, index);
|
||||||
auto type = getTypeOfExpression(chain, tokens, cursor);
|
auto type = getTypeOfExpression(chain, tokens, cursor);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue