1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-15 14:54:09 +02:00

Early support for line/statement moving

This commit is contained in:
Brian Fiete 2020-09-06 09:05:00 -07:00
parent a62a995472
commit a650c7ab9c
5 changed files with 291 additions and 115 deletions

View file

@ -212,6 +212,10 @@ namespace IDE
Add("Make Uppercase", new () => { gApp.[Friend]ChangeCase(true); });
Add("Match Brace Select", new => gApp.Cmd_MatchBrace);
Add("Match Brace", new => gApp.Cmd_MatchBrace);
Add("Move Line Down", new () => gApp.Cmd_MoveLine(.Down));
Add("Move Line Up", new () => gApp.Cmd_MoveLine(.Up));
Add("Move Statement Down", new () => gApp.Cmd_MoveStatement(.Down));
Add("Move Statement Up", new () => gApp.Cmd_MoveStatement(.Up));
Add("Navigate Backwards", new => gApp.[Friend]NavigateBackwards);
Add("Navigate Forwards", new => gApp.[Friend]NavigateForwards);
Add("New Debug Session", new => gApp.Cmd_NewDebugSession);