From: Michael D. Lowis Date: Wed, 28 Jun 2017 01:36:48 +0000 (-0400) Subject: turn trim-on-save on by default X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=270c7e4612d288a32279612facb6f0f57f6ea18b;p=projs%2Ftide.git turn trim-on-save on by default --- diff --git a/lib/config.c b/lib/config.c index 9971966..bf48b16 100644 --- a/lib/config.c +++ b/lib/config.c @@ -36,7 +36,7 @@ struct { /* input related options */ [CopyIndent] = { "tide.input.copy_indent", BOOLEAN, { .opt = true } }, - [TrimOnSave] = { "tide.input.trim_on_save", BOOLEAN, { .opt = false } }, + [TrimOnSave] = { "tide.input.trim_on_save", BOOLEAN, { .opt = true } }, [ExpandTabs] = { "tide.input.expand_tabs", BOOLEAN, { .opt = true } }, [TabWidth] = { "tide.input.tab_width", INTEGER, { .num = 4 } }, [ScrollLines] = { "tide.input.scroll_lines", INTEGER, { .num = 4 } },