From 7a74bd960f60cfa48de39d93faf3861bb5ea4705 Mon Sep 17 00:00:00 2001 From: eidheim Date: Mon, 30 Jul 2018 10:09:44 +0200 Subject: [PATCH] Preferences: source.format_style_on_save_if_style_file_found is now true by default --- src/files.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/files.h b/src/files.h index 750d58d..e5f60a7 100644 --- a/src/files.h +++ b/src/files.h @@ -36,7 +36,7 @@ const std::string default_config_file = R"RAW({ "format_style_on_save_comment": "Performs style format on save if supported on language in buffer", "format_style_on_save": false, "format_style_on_save_if_style_file_found_comment": "Format style if format file is found, even if format_style_on_save is false", - "format_style_on_save_if_style_file_found": false, + "format_style_on_save_if_style_file_found": true, "smart_brackets_comment": "If smart_inserts is enabled, this option is automatically enabled. When inserting an already closed bracket, the cursor might instead be moved, avoiding the need of arrow keys after autocomplete", "smart_brackets": true, "smart_inserts_comment": "When for instance inserting (, () gets inserted. Applies to: (), [], \", '. Also enables pressing ; inside an expression before a final ) to insert ; at the end of line, and deletions of empty insertions",