Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/elfmz/far2l.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelfmz <fenix1905@tut.by>2021-09-18 12:52:59 +0300
committerelfmz <fenix1905@tut.by>2021-09-18 21:46:20 +0300
commit29dd350d0435eb438bb6aee61742cced08568376 (patch)
treedcf5ada7efeb55ed63b8194c89019ab6dbc91028 /editorcomp
parentb809b7ed57952fb59b04d7752c7cf707b39f125d (diff)
FARString is thread safe now; some optimizations and cosmetics
Diffstat (limited to 'editorcomp')
-rw-r--r--editorcomp/src/Settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editorcomp/src/Settings.h b/editorcomp/src/Settings.h
index 122150fe..0714e607 100644
--- a/editorcomp/src/Settings.h
+++ b/editorcomp/src/Settings.h
@@ -28,7 +28,7 @@ private:
int _max_word_length { 200 };
int _min_prefix_length { 2 };
bool _auto_enabling = true;
- std::wstring _file_masks { L"*.c;*.cpp;*.cxx;*.h;*.s;*.asm;*.pl;*.py;*.js;*.json;*.sh" };
+ std::wstring _file_masks { L"*.c;*.cpp;*.cxx;*.h;*.hpp;*.s;*.asm;*.pl;*.py;*.js;*.json;*.sh" };
std::wstring _empty;
std::string _ini_path;