completion improvments,

- "." does not validate anymore but close leaving current text as-is
- tm, BACKSPACE workaround, seemsuseless nowadays
This commit is contained in:
Basile Burg 2022-06-06 20:44:51 +02:00
parent a62b805ece
commit 04138ddd63
3 changed files with 11 additions and 10 deletions

View File

@ -1,3 +1,12 @@
# v3.9.19
## Enhancements
- Completion, changed defaults so that `.` does not validate but instead close, leaving typed text as-is.
To apply changes, set editopr option `closeCompletionCharsWithSpace` to `*+-/^=~><%.` and `closeCompletionChars` to `,;)}]!`.
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
This was an old workaround that has no reason to be maintained anymore.
# v3.9.18
## Enhancements

View File

@ -264,8 +264,8 @@ begin
fCurrLineAttribs.Background := 15789545;
fCurrLineAttribs.Foreground := clNone;
//
fCloseCompletionCharsWithSpace := '*+-/^=~><%';
fCloseCompletionChars:= '.,;)}]!';
fCloseCompletionCharsWithSpace := '*+-/^=~><%.';
fCloseCompletionChars:= ',;)}]!';
//
options1 :=
[eoAutoIndent, eoBracketHighlight, eoGroupUndo, eoTabsToSpaces, eoTrimTrailingSpaces,

View File

@ -2868,14 +2868,6 @@ procedure TDexedMemo.completionDeleteKey(sender: TObject);
begin
if CaretX > 0 then
begin
// these "stinky" lines are necessary because
// the proc is called before deletion is effective
// i.e the deleted char is still there...
caretX := caretX - 1;
ExecuteCommand(ecDeleteChar, #0, nil);
caretX := caretX + 1;
getCompletionList();
if fCompletion.TheForm.ItemList.Count.equals(0) then
begin