- change: In Options —> Editor -> Code Suggestion, option "Hide symbols starting with underscore" default to True.
This commit is contained in:
parent
dbf21e8036
commit
ce9398c2a4
1
NEWS.md
1
NEWS.md
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue