Mercurial > vim
view src/testdir/test89.in @ 4397:a84f21892563 v7.3.947
updated for version 7.3.947
Problem: Python: No iterator for vim.list and vim.bufferlist.
Solution: Add the iterators. Also fix name of FunctionType. Add tests for
vim.buffers. (ZyX)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 15 May 2013 14:39:52 +0200 |
parents | 9f642ac84df9 |
children | 3f2319a953b3 |
line wrap: on
line source
Some tests for setting 'number' and 'relativenumber' STARTTEST :so small.vim :set hidden nocp nu rnu viminfo+=nviminfo :redir @a | set nu? rnu? | redir END :e! xx :redir @b | set nu? rnu? | redir END :e! # :$put ='results:' :$put a :$put b :" :set nonu nornu :setglobal nu :setlocal rnu :redir @c | setglobal nu? | redir END :set nonu nornu :setglobal rnu :setlocal nu :redir @d | setglobal rnu? | redir END :$put =':setlocal must NOT reset the other global value' :$put c :$put d :" :set nonu nornu :setglobal nu :setglobal rnu :redir @e | setglobal nu? | redir END :set nonu nornu :setglobal rnu :setglobal nu :redir @f | setglobal rnu? | redir END :$put =':setglobal MUST reset the other global value' :$put e :$put f :" :set nonu nornu :set nu :set rnu :redir @g | setglobal nu? | redir END :set nonu nornu :set rnu :set nu :redir @h | setglobal rnu? | redir END :$put =':set MUST reset the other global value' :$put g :$put h :" :/^results/,$w! test.out :q! ENDTEST