summaryrefslogtreecommitdiff
path: root/src/testdir/test80.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-03-19 17:42:15 +0100
committerBram Moolenaar <Bram@vim.org>2013-03-19 17:42:15 +0100
commitc2c355df6f094cdb9e599fd395a78c14486ec697 (patch)
tree941a535736b145633d565dea15a30cccf3350dfe /src/testdir/test80.in
parent71afbfe6cd697de30a9e0d57e5a6434cf4bb0f13 (diff)
downloadvim-git-c2c355df6f094cdb9e599fd395a78c14486ec697.tar.gz
updated for version 7.3.873v7.3.873
Problem: Cannot easily use :s to make title case. Solution: Have "\L\u" result in title case. (James McCoy)
Diffstat (limited to 'src/testdir/test80.in')
-rw-r--r--src/testdir/test80.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test80.in b/src/testdir/test80.in
index df4afbb1d..7f6ecfccb 100644
--- a/src/testdir/test80.in
+++ b/src/testdir/test80.in
@@ -35,6 +35,8 @@ STARTTEST
:$put =substitute('vVv', 'V', \"\b\", '')
:$put =substitute('wWw', 'W', \"\\\", '')
:$put =substitute('xXx', 'X', \"\r\", '')
+:$put =substitute('Y', 'Y', '\L\uyYy\l\EY', '')
+:$put =substitute('Z', 'Z', '\U\lZzZ\u\Ez', '')
/^TEST_2
ENDTEST
@@ -67,6 +69,8 @@ STARTTEST
:$put =substitute('uUu', 'U', \"\n\", '')
:$put =substitute('vVv', 'V', \"\b\", '')
:$put =substitute('wWw', 'W', \"\\\", '')
+:$put =substitute('X', 'X', '\L\uxXx\l\EX', '')
+:$put =substitute('Y', 'Y', '\U\lYyY\u\Ey', '')
/^TEST_3
ENDTEST