exclude current line from text completions

This commit is contained in:
Basile Burg 2021-09-17 23:39:47 +02:00
parent 2b674c238d
commit 8af9aeccdb
1 changed files with 2 additions and 0 deletions

View File

@ -2915,6 +2915,8 @@ begin
h := TStringHashSet.create();
for i := 0 to lines.Count-1 do
begin
if i.equals(CaretY - 1) then
continue;
r := TStringRange.create(lines[i]);
while not r.empty do
begin