mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
Comment Selection name change
This commit is contained in:
parent
dc1a7f9cbb
commit
2735238634
3 changed files with 4 additions and 5 deletions
|
@ -196,7 +196,7 @@ namespace IDE
|
||||||
Add("Close Workspace", new => gApp.[Friend]Cmd_CloseWorkspaceAndSetupNew);
|
Add("Close Workspace", new => gApp.[Friend]Cmd_CloseWorkspaceAndSetupNew);
|
||||||
Add("Comment Block", new => gApp.[Friend]CommentBlock);
|
Add("Comment Block", new => gApp.[Friend]CommentBlock);
|
||||||
Add("Comment Lines", new => gApp.[Friend]CommentLines);
|
Add("Comment Lines", new => gApp.[Friend]CommentLines);
|
||||||
Add("Comment Selection", new => gApp.[Friend]CommentSelection);
|
Add("Comment Toggle", new => gApp.[Friend]CommentToggle);
|
||||||
Add("Compile File", new => gApp.Cmd_CompileFile);
|
Add("Compile File", new => gApp.Cmd_CompileFile);
|
||||||
Add("Debug All Tests", new () => { gApp.[Friend]RunTests(true, true); });
|
Add("Debug All Tests", new () => { gApp.[Friend]RunTests(true, true); });
|
||||||
Add("Debug Normal Tests", new () => { gApp.[Friend]RunTests(false, true); });
|
Add("Debug Normal Tests", new () => { gApp.[Friend]RunTests(false, true); });
|
||||||
|
|
|
@ -2446,7 +2446,7 @@ namespace IDE
|
||||||
}
|
}
|
||||||
|
|
||||||
[IDECommand]
|
[IDECommand]
|
||||||
void CommentSelection()
|
void CommentToggle()
|
||||||
{
|
{
|
||||||
var sewc = GetActiveSourceEditWidgetContent();
|
var sewc = GetActiveSourceEditWidgetContent();
|
||||||
if (sewc != null)
|
if (sewc != null)
|
||||||
|
@ -5409,7 +5409,7 @@ namespace IDE
|
||||||
AddMenuItem(advancedEditMenu, "Make Lowercase", "Make Lowercase");
|
AddMenuItem(advancedEditMenu, "Make Lowercase", "Make Lowercase");
|
||||||
AddMenuItem(advancedEditMenu, "Comment Block", "Comment Block");
|
AddMenuItem(advancedEditMenu, "Comment Block", "Comment Block");
|
||||||
AddMenuItem(advancedEditMenu, "Comment Lines", "Comment Lines");
|
AddMenuItem(advancedEditMenu, "Comment Lines", "Comment Lines");
|
||||||
AddMenuItem(advancedEditMenu, "Comment Selection", "Comment Selection");
|
AddMenuItem(advancedEditMenu, "Comment Toggle", "Comment Toggle");
|
||||||
AddMenuItem(advancedEditMenu, "Uncomment Selection", "Uncomment Selection");
|
AddMenuItem(advancedEditMenu, "Uncomment Selection", "Uncomment Selection");
|
||||||
AddMenuItem(advancedEditMenu, "Reformat Document", "Reformat Document");
|
AddMenuItem(advancedEditMenu, "Reformat Document", "Reformat Document");
|
||||||
mViewWhiteSpace.mMenu = AddMenuItem(advancedEditMenu, "View White Space", "View White Space", null, null, true, mViewWhiteSpace.Bool ? 1 : 0);
|
mViewWhiteSpace.mMenu = AddMenuItem(advancedEditMenu, "View White Space", "View White Space", null, null, true, mViewWhiteSpace.Bool ? 1 : 0);
|
||||||
|
|
|
@ -756,9 +756,8 @@ namespace IDE
|
||||||
Add("Cancel Build", "Ctrl+Break");
|
Add("Cancel Build", "Ctrl+Break");
|
||||||
Add("Close Document", "Ctrl+W");
|
Add("Close Document", "Ctrl+W");
|
||||||
Add("Compile File", "Ctrl+F7");
|
Add("Compile File", "Ctrl+F7");
|
||||||
Add("Comment Block", "Ctrl+K, Ctrl+B");
|
Add("Comment Block", "Ctrl+K, Ctrl+C");
|
||||||
Add("Comment Lines", "Ctrl+K, Ctrl+L");
|
Add("Comment Lines", "Ctrl+K, Ctrl+L");
|
||||||
Add("Comment Selection", "Ctrl+K, Ctrl+C");
|
|
||||||
Add("Duplicate Line", "Ctrl+D");
|
Add("Duplicate Line", "Ctrl+D");
|
||||||
Add("Find Class", "Alt+Shift+L");
|
Add("Find Class", "Alt+Shift+L");
|
||||||
Add("Find in Document", "Ctrl+F");
|
Add("Find in Document", "Ctrl+F");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue