mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 10:48:12 +02:00
Try to implement BreakLine (Ctrl+N), bug report 28787
git-svn-id: trunk@34211 -
This commit is contained in:
parent
71782a85f3
commit
cc7d0d2f45
@ -4802,8 +4802,13 @@ begin
|
||||
end;
|
||||
|
||||
procedure TCustomCodeEditor.BreakLine;
|
||||
var
|
||||
SCP: TPoint;
|
||||
begin
|
||||
NotImplemented; Exit;
|
||||
{ Like insert new line, but leave current pos unchanged }
|
||||
SCP:=CurPos;
|
||||
InsertNewLine;
|
||||
SetCurPtr(SCP.X,SCP.Y);
|
||||
end;
|
||||
|
||||
procedure TCustomCodeEditor.BackSpace;
|
||||
|
Loading…
Reference in New Issue
Block a user