mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 09:48:19 +00:00
'cpoptions': Remove "H" flag #2556
This commit is contained in:

committed by
Michael Reed

parent
115f137b12
commit
d6209fa9f0
@@ -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. */
|
||||
|
Reference in New Issue
Block a user