1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 03:52:19 +02:00

Scope Prev/Next commands

This commit is contained in:
Brian Fiete 2020-06-23 15:25:04 -07:00
parent 9e009b134c
commit c2894b0397

View file

@ -242,6 +242,8 @@ namespace IDE
Add("Save All", new () => { gApp.SaveAll(); }); Add("Save All", new () => { gApp.SaveAll(); });
Add("Save As", new () => { gApp.SaveAs(); }); Add("Save As", new () => { gApp.SaveAs(); });
Add("Save File", new => gApp.SaveFile); Add("Save File", new => gApp.SaveFile);
Add("Scope Prev", new => gApp.[Friend]ScopePrev);
Add("Scope Next", new => gApp.[Friend]ScopeNext);
Add("Select Configuration", new => gApp.SelectConfig); Add("Select Configuration", new => gApp.SelectConfig);
Add("Select Platform", new => gApp.SelectPlatform); Add("Select Platform", new => gApp.SelectPlatform);
Add("Set Next Statement", new => gApp.[Friend]SetNextStatement); Add("Set Next Statement", new => gApp.[Friend]SetNextStatement);