From 794e582d41e740397adff72c1ec72a0fb5ef4641 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 11 Jul 2018 08:21:41 +0200 Subject: [PATCH] Auto-reloading of files changed on disk is now on by default, since this is also the default on several other editors. --- src/files.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.h b/src/files.h index 24e0cff..f0945a3 100644 --- a/src/files.h +++ b/src/files.h @@ -59,7 +59,7 @@ const std::string default_config_file = R"RAW({ "highlight_current_line": true, "show_line_numbers": true, "enable_multiple_cursors": false, - "auto_reload_changed_files": false, + "auto_reload_changed_files": true, "clang_format_style_comment": "IndentWidth, AccessModifierOffset and UseTab are set automatically. See http://clang.llvm.org/docs/ClangFormatStyleOptions.html", "clang_format_style": "ColumnLimit: 0, MaxEmptyLinesToKeep: 2, SpaceBeforeParens: Never, NamespaceIndentation: All, BreakBeforeBraces: Custom, BraceWrapping: {BeforeElse: true, BeforeCatch: true}", "clang_usages_threads_comment": "The number of threads used in finding usages in unparsed files. -1 corresponds to the number of cores available, and 0 disables the search",