mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-18 08:06:04 +02:00
Add "Delete All Right" command to IDE
Deletes all characters from cursor position to the end of current line.
This commit is contained in:
parent
fd08367e2b
commit
3e201c324d
3 changed files with 42 additions and 0 deletions
|
@ -198,6 +198,7 @@ namespace IDE
|
|||
Add("Compile File", new => gApp.Cmd_CompileFile);
|
||||
Add("Debug All Tests", new () => { gApp.[Friend]RunTests(true, true); });
|
||||
Add("Debug Normal Tests", new () => { gApp.[Friend]RunTests(false, true); });
|
||||
Add("Delete All Right", new => gApp.[Friend]DeleteAllRight);
|
||||
Add("Duplicate Line", new () => { gApp.[Friend]DuplicateLine(); });
|
||||
Add("Exit", new => gApp.[Friend]Cmd_Exit);
|
||||
Add("Find All References", new => gApp.Cmd_FindAllReferences);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue