mirror of https://gitlab.com/basile.b/dexed.git
ext mod detect, add navig shortcuts + prevent double dialog display
This commit is contained in:
parent
7aee6a38f6
commit
58758616bb
|
@ -26,7 +26,31 @@ object CEDiffViewer: TCEDiffViewer
|
||||||
RightGutter.Width = 0
|
RightGutter.Width = 0
|
||||||
RightGutter.MouseActions = <>
|
RightGutter.MouseActions = <>
|
||||||
Highlighter = diffHl
|
Highlighter = diffHl
|
||||||
Keystrokes = <>
|
Keystrokes = <
|
||||||
|
item
|
||||||
|
Command = ecUp
|
||||||
|
ShortCut = 38
|
||||||
|
end
|
||||||
|
item
|
||||||
|
Command = ecDown
|
||||||
|
ShortCut = 40
|
||||||
|
end
|
||||||
|
item
|
||||||
|
Command = ecLeft
|
||||||
|
ShortCut = 37
|
||||||
|
end
|
||||||
|
item
|
||||||
|
Command = ecRight
|
||||||
|
ShortCut = 39
|
||||||
|
end
|
||||||
|
item
|
||||||
|
Command = ecPageUp
|
||||||
|
ShortCut = 33
|
||||||
|
end
|
||||||
|
item
|
||||||
|
Command = ecPageDown
|
||||||
|
ShortCut = 34
|
||||||
|
end>
|
||||||
MouseActions = <>
|
MouseActions = <>
|
||||||
MouseTextActions = <>
|
MouseTextActions = <>
|
||||||
MouseSelActions = <>
|
MouseSelActions = <>
|
||||||
|
|
|
@ -828,7 +828,7 @@ end;
|
||||||
procedure TCESynMemo.setFocus;
|
procedure TCESynMemo.setFocus;
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
checkFileDate;
|
//checkFileDate;
|
||||||
highlightCurrentIdentifier;
|
highlightCurrentIdentifier;
|
||||||
subjDocFocused(TCEMultiDocSubject(fMultiDocSubject), self);
|
subjDocFocused(TCEMultiDocSubject(fMultiDocSubject), self);
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue