mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
defaults: enable 'autoread' by default #2856
Re: https://github.com/neovim/neovim/issues/2676
This commit is contained in:
parent
41c76d9444
commit
81847da948
@ -737,7 +737,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
||||
deleted indent; Vi puts the cursor somewhere in the deleted indent}.
|
||||
|
||||
*'autoread'* *'ar'* *'noautoread'* *'noar'*
|
||||
'autoread' 'ar' boolean (default off)
|
||||
'autoread' 'ar' boolean (default on)
|
||||
global or local to buffer |global-local|
|
||||
When a file has been detected to have been changed outside of Vim and
|
||||
it has not been changed inside of Vim, automatically read it again.
|
||||
|
@ -28,6 +28,7 @@ these differences.
|
||||
==============================================================================
|
||||
2. Option defaults *nvim-option-defaults*
|
||||
|
||||
- 'autoread' is set by default
|
||||
- 'backspace' defaults to "indent,eol,start"
|
||||
- 'encoding' defaults to "utf-8"
|
||||
- 'formatoptions' defaults to "tcqj"
|
||||
|
@ -415,9 +415,9 @@ static vimoption_T
|
||||
{"autoindent", "ai", P_BOOL|P_VI_DEF,
|
||||
(char_u *)&p_ai, PV_AI,
|
||||
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
|
||||
{"autoread", "ar", P_BOOL|P_VI_DEF,
|
||||
{"autoread", "ar", P_BOOL|P_VIM,
|
||||
(char_u *)&p_ar, PV_AR,
|
||||
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
|
||||
{(char_u *)FALSE, (char_u *)TRUE} SCRIPTID_INIT},
|
||||
{"autowrite", "aw", P_BOOL|P_VI_DEF,
|
||||
(char_u *)&p_aw, PV_NONE,
|
||||
{(char_u *)FALSE, (char_u *)0L} SCRIPTID_INIT},
|
||||
|
Loading…
Reference in New Issue
Block a user