summaryrefslogtreecommitdiff
path: root/src/testdir/test89.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-13 20:42:32 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-13 20:42:32 +0100
commit20754027b3b8c29dfc5ee0b5dfa6a5459ea6b903 (patch)
treedd5dcdaf366c36f77f642dfe0b49a0e7f1383d41 /src/testdir/test89.in
parent1e284f515581e0516e3f3dea568b9b9084bbcab1 (diff)
downloadvim-git-20754027b3b8c29dfc5ee0b5dfa6a5459ea6b903.tar.gz
updated for version 7.3.861v7.3.861
Problem: ":setlocal number" clears global value of 'relativenumber'. Solution: Do it properly. (Markus Heidelberg)
Diffstat (limited to 'src/testdir/test89.in')
-rw-r--r--src/testdir/test89.in37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/testdir/test89.in b/src/testdir/test89.in
index 7b25b20c1..122165d4f 100644
--- a/src/testdir/test89.in
+++ b/src/testdir/test89.in
@@ -10,6 +10,43 @@ STARTTEST
:$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