diff options
| author | David Bürgin <676c7473@gmail.com> | 2015-05-01 11:47:09 +0200 |
|---|---|---|
| committer | Michael Reed <m.reed@mykolab.com> | 2015-05-01 16:17:03 -0400 |
| commit | cc76c5b0cfb6233ff36949a4422d59cd4bc6efd5 (patch) | |
| tree | 9ccff2612f8f6643fe316b6a3f45d223d726dff5 /src/nvim/testdir | |
| parent | 88827f5834c94eeba2e27cd942c615309b7c1b1d (diff) | |
| download | rneovim-cc76c5b0cfb6233ff36949a4422d59cd4bc6efd5.tar.gz rneovim-cc76c5b0cfb6233ff36949a4422d59cd4bc6efd5.tar.bz2 rneovim-cc76c5b0cfb6233ff36949a4422d59cd4bc6efd5.zip | |
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.
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test60.in | 2 | ||||
| -rw-r--r-- | src/nvim/testdir/test60.ok | 2 |
2 files changed, 2 insertions, 2 deletions
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 |