diff options
author | Felipe Morales <hel.sheep@gmail.com> | 2015-06-20 16:39:40 -0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-06-21 03:20:35 -0400 |
commit | 6ed6d8d910907f5a85b3cf5eb7291e6fff4ae9e4 (patch) | |
tree | cf763de7acba0c5b057f52d567c97f9c885c82f9 /runtime | |
parent | 721ffd6b65db1094b81e89aaa30ff57d10030829 (diff) | |
download | rneovim-6ed6d8d910907f5a85b3cf5eb7291e6fff4ae9e4.tar.gz rneovim-6ed6d8d910907f5a85b3cf5eb7291e6fff4ae9e4.tar.bz2 rneovim-6ed6d8d910907f5a85b3cf5eb7291e6fff4ae9e4.zip |
defaults: remove "options" in 'sessionoptions'. #2871
Re: https://github.com/neovim/neovim/issues/2676
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/options.txt | 4 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 388848ac4e..8f8f9ba152 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -5406,10 +5406,10 @@ A jump table for the options with a short description can be found at |Q_op|. *'sessionoptions'* *'ssop'* 'sessionoptions' 'ssop' string (default: "blank,buffers,curdir,folds, + help,tabpages,winsize" + Vi default: "blank,buffers,curdir,folds, help,options,tabpages,winsize") global - {not available when compiled without the |+mksession| - feature} Changes the effect of the |:mksession| command. It is a comma separated list of words. Each word enables saving and restoring something: diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 80d687a2a1..2140994259 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -28,8 +28,8 @@ these differences. ============================================================================== 2. Option defaults *nvim-option-defaults* -- 'autoread' is set by default - 'autoindent' is set by default. +- 'autoread' is set by default - 'backspace' defaults to "indent,eol,start" - 'complete' doesn't include "i" - 'display' defaults to "lastline" @@ -41,6 +41,7 @@ these differences. - 'mouse' defaults to "a" - 'nocompatible' is always set - 'nrformats' defaults to "hex" +- 'sessionoptions' doesn't include "options" - 'smarttab' is set by default - 'tabpagemax' defaults to 50 - 'tags' defaults to "./tags;,tags" |