- change: In Options —> Editor -> Code Suggestion, option "Hide symbols starting with underscore" default to True.

This commit is contained in:
Roy Qu 2023-11-02 10:23:29 +08:00
parent dbf21e8036
commit ce9398c2a4
2 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ Red Panda C++ Version 2.26
- enhancement: Hide symbols that contains "<>" in code suggestions. - enhancement: Hide symbols that contains "<>" in code suggestions.
- enhancement: Slightly reduce memory usage. - enhancement: Slightly reduce memory usage.
- change: In Options -> Language -> Generate Assembly, option "Don't generate SEH directives" default to True. - change: In Options -> Language -> Generate Assembly, option "Don't generate SEH directives" default to True.
- change: In Options —> Editor -> Code Suggestion, option "Hide symbols starting with underscore" default to True.
Red Panda C++ Version 2.25 Red Panda C++ Version 2.25

View File

@ -4694,7 +4694,7 @@ void Settings::CodeCompletion::doLoad()
mShowCodeIns = boolValue("show_code_ins",true); mShowCodeIns = boolValue("show_code_ins",true);
mMinCharRequired = intValue("min_char_required",1); mMinCharRequired = intValue("min_char_required",1);
mHideSymbolsStartsWithTwoUnderLine = boolValue("hide_symbols_start_with_two_underline", true); mHideSymbolsStartsWithTwoUnderLine = boolValue("hide_symbols_start_with_two_underline", true);
mHideSymbolsStartsWithUnderLine = boolValue("hide_symbols_start_with_underline", false); mHideSymbolsStartsWithUnderLine = boolValue("hide_symbols_start_with_underline", true);
bool shouldShare= true; bool shouldShare= true;
// bool doClear = false; // bool doClear = false;