diff options
author | David Bürgin <676c7473@gmail.com> | 2015-05-01 15:42:45 +0200 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2015-05-04 14:20:28 -0400 |
commit | d6209fa9f031658a9750efee12733f64ab32074e (patch) | |
tree | 22b7f63f5fe5758b1303ee94a958b6b1ae973c77 /src/nvim/normal.c | |
parent | 115f137b124a8b26c92656cf190e340b2364a5a2 (diff) | |
download | rneovim-d6209fa9f031658a9750efee12733f64ab32074e.tar.gz rneovim-d6209fa9f031658a9750efee12733f64ab32074e.tar.bz2 rneovim-d6209fa9f031658a9750efee12733f64ab32074e.zip |
'cpoptions': Remove "H" flag #2556
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 3217e06ac2..849bc0ea7d 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -7010,10 +7010,7 @@ static void nv_edit(cmdarg_T *cap) break; case 'I': /* "I"nsert before the first non-blank */ - if (vim_strchr(p_cpo, CPO_INSEND) == NULL) - beginline(BL_WHITE); - else - beginline(BL_WHITE|BL_FIX); + beginline(BL_WHITE); break; case 'a': /* "a"ppend is like "i"nsert on the next character. */ |