summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-20 17:53:25 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-20 17:53:25 +0100
commit364fa5c7ec2a99a791c8f8b66fe70b0bf1dd9a41 (patch)
treec52570b3a7ebcae3c0cec33930a87e6e27847410
parenta4f6ca717b4483eb82c6c71f71a5a5cf70e55d80 (diff)
downloadvim-git-7.4.1619.tar.gz
patch 7.4.1619v7.4.1619
Problem: When 'fileformats' is set in the vimrc it applies to new buffers but not the initial buffer. Solution: Set 'fileformat' when starting up. (Mike Williams)
-rw-r--r--src/option.c9
-rw-r--r--src/version.c2
2 files changed, 11 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index 616f9a303..8a706afbd 100644
--- a/src/option.c
+++ b/src/option.c
@@ -4017,6 +4017,15 @@ set_init_3(void)
}
#endif
+ if (bufempty())
+ {
+ int idx_ffs = findoption((char_u *)"ffs");
+
+ /* Apply the first entry of 'fileformats' to the initial buffer. */
+ if (idx_ffs >= 0 && (options[idx_ffs].flags & P_WAS_SET))
+ set_fileformat(default_fileformat(), OPT_LOCAL);
+ }
+
#ifdef FEAT_TITLE
set_title_defaults();
#endif
diff --git a/src/version.c b/src/version.c
index 03a30812c..9136583df 100644
--- a/src/version.c
+++ b/src/version.c
@@ -749,6 +749,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1619,
+/**/
1618,
/**/
1617,