mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
runtime: Remove 'textauto'
This commit is contained in:
parent
666c0be13c
commit
80289956a1
@ -1727,7 +1727,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
'softtabstop' 0 tabs are always 'tabstop' positions
|
'softtabstop' 0 tabs are always 'tabstop' positions
|
||||||
'startofline' on goto startofline with some commands
|
'startofline' on goto startofline with some commands
|
||||||
'tagrelative' + off tag file names are not relative
|
'tagrelative' + off tag file names are not relative
|
||||||
'textauto' + off no automatic fileformats detection
|
|
||||||
'textwidth' 0 no automatic line wrap
|
'textwidth' 0 no automatic line wrap
|
||||||
'tildeop' off tilde is not an operator
|
'tildeop' off tilde is not an operator
|
||||||
'ttimeout' off no terminal timeout
|
'ttimeout' off no terminal timeout
|
||||||
@ -2970,9 +2969,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
<CR> in front of it, Dos format is used, otherwise Unix format is
|
<CR> in front of it, Dos format is used, otherwise Unix format is
|
||||||
used.
|
used.
|
||||||
Also see |file-formats|.
|
Also see |file-formats|.
|
||||||
For backwards compatibility: When this option is set to an empty
|
|
||||||
string or one format (no comma is included), 'textauto' is reset,
|
|
||||||
otherwise 'textauto' is set.
|
|
||||||
NOTE: This option is set to the Vi default value when 'compatible' is
|
NOTE: This option is set to the Vi default value when 'compatible' is
|
||||||
set and to the Vim default value when 'compatible' is reset.
|
set and to the Vim default value when 'compatible' is reset.
|
||||||
|
|
||||||
@ -7248,17 +7244,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
|||||||
displayed). When reset: Remove 's' flag from 'shortmess' option. {Vi
|
displayed). When reset: Remove 's' flag from 'shortmess' option. {Vi
|
||||||
shortens a lot of messages}
|
shortens a lot of messages}
|
||||||
|
|
||||||
*'textauto'* *'ta'* *'notextauto'* *'nota'*
|
|
||||||
'textauto' 'ta' boolean (Vim default: on, Vi default: off)
|
|
||||||
global
|
|
||||||
{not in Vi}
|
|
||||||
This option is obsolete. Use 'fileformats'.
|
|
||||||
For backwards compatibility, when 'textauto' is set, 'fileformats' is
|
|
||||||
set to the default value for the current system. When 'textauto' is
|
|
||||||
reset, 'fileformats' is made empty.
|
|
||||||
NOTE: This option is set to the Vi default value when 'compatible' is
|
|
||||||
set and to the Vim default value when 'compatible' is reset.
|
|
||||||
|
|
||||||
*'textwidth'* *'tw'*
|
*'textwidth'* *'tw'*
|
||||||
'textwidth' 'tw' number (default 0)
|
'textwidth' 'tw' number (default 0)
|
||||||
local to buffer
|
local to buffer
|
||||||
|
@ -903,7 +903,6 @@ Short explanation of each option: *option-list*
|
|||||||
'termbidi' 'tbidi' terminal takes care of bi-directionality
|
'termbidi' 'tbidi' terminal takes care of bi-directionality
|
||||||
'termencoding' 'tenc' character encoding used by the terminal
|
'termencoding' 'tenc' character encoding used by the terminal
|
||||||
'terse' shorten some messages
|
'terse' shorten some messages
|
||||||
'textauto' 'ta' obsolete, use 'fileformats'
|
|
||||||
'textwidth' 'tw' maximum width of text that is being inserted
|
'textwidth' 'tw' maximum width of text that is being inserted
|
||||||
'thesaurus' 'tsr' list of thesaurus files for keyword completion
|
'thesaurus' 'tsr' list of thesaurus files for keyword completion
|
||||||
'tildeop' 'top' tilde command "~" behaves like an operator
|
'tildeop' 'top' tilde command "~" behaves like an operator
|
||||||
|
@ -959,11 +959,7 @@ call append("$", "\t(local to buffer)")
|
|||||||
call <SID>OptionL("ff")
|
call <SID>OptionL("ff")
|
||||||
call append("$", "fileformats\tlist of file formats to look for when editing a file")
|
call append("$", "fileformats\tlist of file formats to look for when editing a file")
|
||||||
call <SID>OptionG("ffs", &ffs)
|
call <SID>OptionG("ffs", &ffs)
|
||||||
call append("$", "textmode\tobsolete, use 'fileformat'")
|
|
||||||
call append("$", "\t(local to buffer)")
|
call append("$", "\t(local to buffer)")
|
||||||
call <SID>BinOptionL("tx")
|
|
||||||
call append("$", "textauto\tobsolete, use 'fileformats'")
|
|
||||||
call <SID>BinOptionG("ta", &ta)
|
|
||||||
call append("$", "write\twriting files is allowed")
|
call append("$", "write\twriting files is allowed")
|
||||||
call <SID>BinOptionG("write", &write)
|
call <SID>BinOptionG("write", &write)
|
||||||
call append("$", "writebackup\twrite a backup file before overwriting a file")
|
call append("$", "writebackup\twrite a backup file before overwriting a file")
|
||||||
|
Loading…
Reference in New Issue
Block a user