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.MouseActions = <>
|
||||
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 = <>
|
||||
MouseTextActions = <>
|
||||
MouseSelActions = <>
|
||||
|
|
|
@ -828,7 +828,7 @@ end;
|
|||
procedure TCESynMemo.setFocus;
|
||||
begin
|
||||
inherited;
|
||||
checkFileDate;
|
||||
//checkFileDate;
|
||||
highlightCurrentIdentifier;
|
||||
subjDocFocused(TCEMultiDocSubject(fMultiDocSubject), self);
|
||||
end;
|
||||
|
|
Loading…
Reference in New Issue