mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-12 05:14:10 +02:00
Add "Time Autocomplete" internal IDE flag
This commit is contained in:
parent
1d30beb2d2
commit
b57ac935e5
4 changed files with 13 additions and 0 deletions
|
@ -169,6 +169,7 @@ namespace IDE
|
|||
public bool mLastCompileHadMessages;
|
||||
public bool mPauseOnExit;
|
||||
public bool mDbgDelayedAutocomplete;
|
||||
public bool mDbgTimeAutocomplete;
|
||||
public BeefConfig mBeefConfig = new BeefConfig() ~ delete _;
|
||||
public List<String> mDeferredFails = new .() ~ DeleteContainerAndItems!(_);
|
||||
public String mInitialCWD = new .() ~ delete _;
|
||||
|
@ -5429,6 +5430,7 @@ namespace IDE
|
|||
var internalEditMenu = subMenu.AddMenuItem("Internal");
|
||||
internalEditMenu.AddMenuItem("Hilight Cursor References", null, new (menu) => { ToggleCheck(menu, ref gApp.mSettings.mEditorSettings.mHiliteCursorReferences); }, null, null, true, gApp.mSettings.mEditorSettings.mHiliteCursorReferences ? 1 : 0);
|
||||
internalEditMenu.AddMenuItem("Delayed Autocomplete", null, new (menu) => { ToggleCheck(menu, ref gApp.mDbgDelayedAutocomplete); }, null, null, true, gApp.mDbgDelayedAutocomplete ? 1 : 0);
|
||||
internalEditMenu.AddMenuItem("Time Autocomplete", null, new (menu) => { ToggleCheck(menu, ref gApp.mDbgTimeAutocomplete); }, null, null, true, gApp.mDbgTimeAutocomplete ? 1 : 0);
|
||||
}
|
||||
|
||||
//////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue