mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 04:19:19 +02:00
SynEdit, Trim-Trailing-Spaces: Fixed, tab moves caret in Position-Only mode
git-svn-id: trunk@19124 -
This commit is contained in:
parent
086fcf9b93
commit
0725aa4cca
@ -6008,7 +6008,13 @@ begin
|
||||
fLastCaretX := CaretX; //mh 2000-10-19
|
||||
end;
|
||||
ecTab:
|
||||
if not ReadOnly then DoTabKey;
|
||||
if not ReadOnly then
|
||||
try
|
||||
FCaret.IncForcePastEOL;
|
||||
DoTabKey;
|
||||
finally
|
||||
FCaret.DecForcePastEOL;
|
||||
end;
|
||||
ecShiftTab:
|
||||
if not ReadOnly then
|
||||
{$IFDEF SYN_LAZARUS}
|
||||
|
Loading…
Reference in New Issue
Block a user