update changelog

This commit is contained in:
Basile Burg 2020-07-01 17:36:43 +02:00
parent 9c00649ede
commit 6bce0a2c14
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# v3.9.6-dev
## Bugs fixed
- Editor: wrong position indicated in the call tips when starting to type an array literal, a slice or any other expression involving the square brackets. (#51)
# v3.9.5
## Enhancements

View File

@ -1100,7 +1100,7 @@ var
s: integer = 0;
begin
result := 0;
// got right after the call left paren
// go right after the call left paren
i := getIndexOfTokenAt(tokens, caretPos) + 1;
j := i;
while i > 0 do
@ -1130,7 +1130,7 @@ begin
if p > 0 then
continue;
end;
// skip square bracket pairs, if not already skipping paren pairs
// skip square bracket pairs, if not already skipping parens pairs
if (p = 0) then
begin
s += byte(t^.Data = '[');