1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-06 00:05:59 +02:00

Collapsible regions (aka outlining aka code folding)

This commit is contained in:
Brian Fiete 2022-02-28 11:27:12 -08:00
parent 3dd4212ccd
commit 90735e3bf8
21 changed files with 2518 additions and 277 deletions

View file

@ -774,6 +774,12 @@ namespace IDE
Add("Build Workspace", "F7");
Add("Cancel Build", "Ctrl+Break");
Add("Close Document", "Ctrl+W");
Add("Collapse All", "Ctrl+M, Ctrl+A");
Add("Collapse To Definition", "Ctrl+M, Ctrl+O");
Add("Collapse Redo", "Ctrl+M, Ctrl+Y");
Add("Collapse Toggle", "Ctrl+M, Ctrl+M");
Add("Collapse Toggle All", "Ctrl+M, Ctrl+L");
Add("Collapse Undo", "Ctrl+M, Ctrl+Z");
Add("Compile File", "Ctrl+F7");
Add("Comment Block", "Ctrl+K, Ctrl+C");
Add("Comment Lines", "Ctrl+K, Ctrl+/");