From cc76c5b0cfb6233ff36949a4422d59cd4bc6efd5 Mon Sep 17 00:00:00 2001 From: David Bürgin <676c7473@gmail.com> Date: Fri, 1 May 2015 11:47:09 +0200 Subject: Remove obsolete vi options #2553 These options were never implemented in Vim. They are documented under |missing-options| in runtime/doc/vi_diff.txt: 'autoprint' 'beautify' 'flash' 'graphic' 'hardtabs' 'mesg' 'novice' 'open' 'optimize' 'redraw' 'slowopen' 'sourceany' 'w300' 'w1200' 'w9600' References #2548. --- src/nvim/testdir/test60.in | 2 +- src/nvim/testdir/test60.ok | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/testdir') diff --git a/src/nvim/testdir/test60.in b/src/nvim/testdir/test60.in index f0f1aecedd..d449e8d4da 100644 --- a/src/nvim/testdir/test60.in +++ b/src/nvim/testdir/test60.in @@ -76,7 +76,7 @@ endfunction " Existing and working option (short form) let test_cases += [['+is', 1]] " Existing option that is hidden. - let test_cases += [['+autoprint', 0]] + let test_cases += [['+mouseshape', 0]] " Existing environment variable let $EDITOR_NAME = 'Vim Editor' diff --git a/src/nvim/testdir/test60.ok b/src/nvim/testdir/test60.ok index dabcd0c05d..39bc245bc4 100644 --- a/src/nvim/testdir/test60.ok +++ b/src/nvim/testdir/test60.ok @@ -53,7 +53,7 @@ OK OK +is: 1 OK -+autoprint: 0 ++mouseshape: 0 OK $EDITOR_NAME: 1 OK -- cgit