Mercurial > vim
annotate src/testdir/unix.vim @ 32288:8201b0fcea02 v9.0.1476
patch 9.0.1476: lines put in non-current window are not displayed
Commit: https://github.com/vim/vim/commit/e7f05a8780426dc7af247419c6d02d5f1e896689
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 22 15:35:28 2023 +0100
patch 9.0.1476: lines put in non-current window are not displayed
Problem: Lines put in non-current window are not displayed. (Marius
Gedminas)
Solution: Don't increment the topline when inserting just above it.
(closes #12212)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 22 Apr 2023 16:45:05 +0200 |
parents | dbec60b8c253 |
children |
rev | line source |
---|---|
7 | 1 " Settings for test script execution |
2 " Always use "sh", don't use the value of "$SHELL". | |
3 set shell=sh | |
9501
f0201deac2a2
commit https://github.com/vim/vim/commit/89b10421ca1aea55acbafac1df93be4e20210ceb
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
4 |
31849
dbec60b8c253
patch 9.0.1257: code style is not check in test scripts
Bram Moolenaar <Bram@vim.org>
parents:
10791
diff
changeset
|
5 " Only when the +eval feature is present. |
10791
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 |