mirror of https://gitlab.com/basile.b/dexed.git
update changelog
This commit is contained in:
parent
9c00649ede
commit
6bce0a2c14
|
@ -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
|
||||
|
|
|
@ -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 = '[');
|
||||
|
|
Loading…
Reference in New Issue