diff options
author | Seth Jackson <sethjackson@gmail.com> | 2016-01-06 18:27:37 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2016-01-08 14:59:18 -0500 |
commit | d51a27b7e58c9cdbc1bf10958254fe666603f3f2 (patch) | |
tree | 855fbe4de0905594e8071c513b0ce60e8f080378 /src | |
parent | 3b23d733ddac1b42faea10e68864153d9e356da0 (diff) | |
download | rneovim-d51a27b7e58c9cdbc1bf10958254fe666603f3f2.tar.gz rneovim-d51a27b7e58c9cdbc1bf10958254fe666603f3f2.tar.bz2 rneovim-d51a27b7e58c9cdbc1bf10958254fe666603f3f2.zip |
Remove 'restorescreen' option
The relevant code was never actually in Neovim, most likely due to being
unifdef(1)'d out during the initial import.
see `:h hidden-options'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/options.lua | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 945626ff79..cdac6ffd5c 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1856,13 +1856,6 @@ return { defaults={if_true={vi=2}} }, { - full_name='restorescreen', abbreviation='rs', - type='bool', scope={'global'}, - vi_def=true, - enable_if=false, - defaults={if_true={vi=true}} - }, - { full_name='revins', abbreviation='ri', type='bool', scope={'global'}, vi_def=true, |