mirror of https://gitlab.com/basile.b/dexed.git
editor, allow to validate completion with TAB
This commit is contained in:
parent
dadf319669
commit
ce57c24b28
|
@ -125,5 +125,5 @@ The shortcuts are editable in the [shortcut editor](options_shortcuts_editor), u
|
|||
- **lineNumberEvery**: Sets the frequency of the line numbers in the gutter.
|
||||
- **phobosDocRoot**: Sets the location of the standard library html documentation. This is used when <kbd>F1</kbd> is pressed. The value can be a local folder or an http address.
|
||||
- **plusDdoc**: Sets if instead of `*`, `+` are used in the comment produced by the command _Insert DDoc Template_.
|
||||
- **resetFontSize**: When checked and if the font size is modified then the font size is resets in all the documents that are opened. The option can be disabled in order to keep the current zoom ration.
|
||||
- **resetFontSize**: When checked and if the font size is modified then the font size is resets in all the documents that are opened. The option can be disabled in order to keep the current zoom ratio.
|
||||
- **smartDdocNewLine**: Allow the auto insertion of a leading `*` or a `+` while writing documentation comments.
|
||||
|
|
|
@ -201,6 +201,7 @@ type
|
|||
procedure setAutoDotDelay(value: Integer);
|
||||
procedure completionExecute(sender: TObject);
|
||||
procedure getCompletionList;
|
||||
procedure completionFormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||||
function completionItemPaint(const AKey: string; ACanvas: TCanvas;X, Y: integer;
|
||||
Selected: boolean; Index: integer): boolean;
|
||||
procedure completionCodeCompletion(var value: string; SourceValue: string;
|
||||
|
@ -744,6 +745,7 @@ begin
|
|||
fCompletion.OnExecute:= @completionExecute;
|
||||
fCompletion.OnCodeCompletion:=@completionCodeCompletion;
|
||||
fCompletion.OnPaintItem:= @completionItemPaint;
|
||||
fCompletion.TheForm.OnKeyDown:= @completionFormKeyDown;
|
||||
fCompletion.CaseSensitive:=true;
|
||||
TStringList(fCompletion.ItemList).CaseSensitive:=true;
|
||||
fCompletion.LongLineHintType:=sclpNone;
|
||||
|
@ -2093,6 +2095,12 @@ begin
|
|||
fLastCompletion := value;
|
||||
end;
|
||||
|
||||
procedure TCESynMemo.completionFormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||||
begin
|
||||
if char(key) = #9 then
|
||||
key := 13;
|
||||
end;
|
||||
|
||||
function TCESynMemo.completionItemPaint(const AKey: string; ACanvas: TCanvas;X, Y: integer;
|
||||
Selected: boolean; Index: integer): boolean;
|
||||
var
|
||||
|
|
Loading…
Reference in New Issue