annotate src/testdir/unix.vim @ 18469:66964658cc3c v8.1.2228

patch 8.1.2228: screenpos() returns wrong values when 'number' is set Commit: https://github.com/vim/vim/commit/38ba4dce4a8574e60f6ddb111922880b0c7affdc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 27 21:39:09 2019 +0100 patch 8.1.2228: screenpos() returns wrong values when 'number' is set Problem: screenpos() returns wrong values when 'number' is set. (Ben Jackson) Solution: Compare the column with the window width. (closes #5133)
author Bram Moolenaar <Bram@vim.org>
date Sun, 27 Oct 2019 21:45:03 +0100
parents bfd636b8e259
children dbec60b8c253
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Settings for test script execution
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Always use "sh", don't use the value of "$SHELL".
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
3 set shell=sh
9501
f0201deac2a2 commit https://github.com/vim/vim/commit/89b10421ca1aea55acbafac1df93be4e20210ceb
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
4
10791
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
5 " Only when the +eval feature is present.
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
6 if 1
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
7 " While some tests overwrite $HOME to prevent them from polluting user files,
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
8 " we need to remember the original value so that we can tell external systems
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
9 " where to ask about their own user settings.
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
10 let g:tester_HOME = $HOME
bfd636b8e259 patch 8.0.0285: tests fail with tiny build on Unix
Christian Brabandt <cb@256bit.org>
parents: 10775
diff changeset
11 endif
10775
d08655e2633a patch 8.0.0277: the GUI test may trigger fontconfig and take a long time
Christian Brabandt <cb@256bit.org>
parents: 9501
diff changeset
12
9501
f0201deac2a2 commit https://github.com/vim/vim/commit/89b10421ca1aea55acbafac1df93be4e20210ceb
Christian Brabandt <cb@256bit.org>
parents: 7
diff changeset
13 source setup.vim