mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-04 07:15:59 +02:00
Added option to toggle between classic and fuzzy autocomplete
This commit is contained in:
parent
ac99191487
commit
8f0502972f
9 changed files with 172 additions and 36 deletions
|
@ -604,7 +604,7 @@ namespace IDE
|
|||
No,
|
||||
Yes,
|
||||
BackupOnly
|
||||
}
|
||||
}
|
||||
|
||||
public List<String> mFonts = new .() ~ DeleteContainerAndItems!(_);
|
||||
public float mFontSize = 12;
|
||||
|
@ -613,6 +613,7 @@ namespace IDE
|
|||
public bool mAutoCompleteRequireTab = false;
|
||||
public bool mAutoCompleteOnEnter = true;
|
||||
public bool mAutoCompleteShowDocumentation = true;
|
||||
public bool mFuzzyAutoComplete = false;
|
||||
public bool mShowLocatorAnim = true;
|
||||
public bool mHiliteCursorReferences = true;
|
||||
public bool mLockEditing;
|
||||
|
@ -639,6 +640,7 @@ namespace IDE
|
|||
sd.Add("AutoCompleteRequireTab", mAutoCompleteRequireTab);
|
||||
sd.Add("AutoCompleteOnEnter", mAutoCompleteOnEnter);
|
||||
sd.Add("AutoCompleteShowDocumentation", mAutoCompleteShowDocumentation);
|
||||
sd.Add("FuzzyAutoComplete", mFuzzyAutoComplete);
|
||||
sd.Add("ShowLocatorAnim", mShowLocatorAnim);
|
||||
sd.Add("HiliteCursorReferences", mHiliteCursorReferences);
|
||||
sd.Add("LockEditing", mLockEditing);
|
||||
|
@ -668,6 +670,7 @@ namespace IDE
|
|||
sd.Get("AutoCompleteRequireTab", ref mAutoCompleteRequireTab);
|
||||
sd.Get("AutoCompleteOnEnter", ref mAutoCompleteOnEnter);
|
||||
sd.Get("AutoCompleteShowDocumentation", ref mAutoCompleteShowDocumentation);
|
||||
sd.Get("FuzzyAutoComplete", ref mFuzzyAutoComplete);
|
||||
sd.Get("ShowLocatorAnim", ref mShowLocatorAnim);
|
||||
sd.Get("HiliteCursorReferences", ref mHiliteCursorReferences);
|
||||
sd.Get("LockEditing", ref mLockEditing);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue