1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-12 05:14:10 +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:
miere43 2021-11-04 23:18:27 +03:00
parent fd08367e2b
commit 3e201c324d
3 changed files with 42 additions and 0 deletions

View file

@ -2409,6 +2409,12 @@ namespace IDE
//CloseWorkspace();
//FinishShowingNewWorkspace();
}
[IDECommand]
void DeleteAllRight()
{
GetActiveSourceEditWidgetContent()?.DeleteAllRight();
}
[IDECommand]
void DuplicateLine()