diff options
author | Florian Walch <florian@fwalch.com> | 2015-02-17 19:04:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-02-22 14:55:58 -0500 |
commit | 0df6b9168e9dc09d3e0ae6050d67b7c31c603782 (patch) | |
tree | ad816b4aca549d99793626a10099fee6e0e6d343 /runtime/doc | |
parent | 3e292316846708dfc1153d55fbd5f012c2da8a35 (diff) | |
download | rneovim-0df6b9168e9dc09d3e0ae6050d67b7c31c603782.tar.gz rneovim-0df6b9168e9dc09d3e0ae6050d67b7c31c603782.tar.bz2 rneovim-0df6b9168e9dc09d3e0ae6050d67b7c31c603782.zip |
Simpler handling for "always-on"/"always-off" options. #2002
'compatible' and 'edcompatible' are forced to be off.
'ttyfast' is forced to be on.
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/options.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 5d6fedcac4..2967036155 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1621,9 +1621,7 @@ A jump table for the options with a short description can be found at |Q_op|. *'compatible'* *'cp'* *'nocompatible'* *'nocp'* 'compatible' 'cp' Removed. {Nvim} - - Support for Vi-compatible mode has been removed. "set nocp" is - ignored, and "set cp" is an error. + "set nocp" is ignored, and "set cp" is an error. *'complete'* *'cpt'* *E535* 'complete' 'cpt' string (default: ".,w,b,u,t,i") @@ -2416,6 +2414,7 @@ A jump table for the options with a short description can be found at |Q_op|. *'ed'* *'edcompatible'* *'noed'* *'noedcompatible'* 'edcompatible' 'ed' Removed. {Nvim} + "set noed" is ignored, and "set ed" is an error. *'encoding'* *'enc'* *E543* 'encoding' 'enc' string (default: "latin1" or value from $LANG) @@ -7169,6 +7168,7 @@ A jump table for the options with a short description can be found at |Q_op|. *'ttyfast'* *'tf'* *'nottyfast'* *'notf'* 'ttyfast' 'tf' Removed. {Nvim} + "set tf" is ignored, and "set notf" is an error. *'ttymouse'* *'ttym'* 'ttymouse' 'ttym' string (default depends on 'term') |