diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-18 17:02:38 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-06-20 14:02:56 -0400 |
commit | 8e3f67f2a0166994925af75c0efa972d76ea82de (patch) | |
tree | f2913183c74950a7b9a7396044403682ca96d2c0 /src | |
parent | 81847da948b91a77d55fd2245fff3fc5cf8e6310 (diff) | |
download | rneovim-8e3f67f2a0166994925af75c0efa972d76ea82de.tar.gz rneovim-8e3f67f2a0166994925af75c0efa972d76ea82de.tar.bz2 rneovim-8e3f67f2a0166994925af75c0efa972d76ea82de.zip |
defaults: enable 'autoindent' #2857
Re: https://github.com/neovim/neovim/issues/2676
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 923c2e3748..d2361c1875 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -412,9 +412,9 @@ static vimoption_T {"autochdir", "acd", P_BOOL|P_VI_DEF, (char_u *)&p_acd, PV_NONE, {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT}, - {"autoindent", "ai", P_BOOL|P_VI_DEF, + {"autoindent", "ai", P_BOOL, (char_u *)&p_ai, PV_AI, - {(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT}, + {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT}, {"autoread", "ar", P_BOOL|P_VIM, (char_u *)&p_ar, PV_AR, {(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT}, |