Mercurial > vim
annotate src/testdir/test10.in @ 30882:7449da0e006b v9.0.0775
patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Commit: https://github.com/vim/vim/commit/2a46f81ec7739967265759838afe7972e5f81e5e
Author: Christopher Plewright <chris@createng.com>
Date: Sun Oct 16 19:47:45 2022 +0100
patch 9.0.0775: MS-Windows: mouse scrolling not supported in the console
Problem: MS-Windows: mouse scrolling not supported in the console.
Solution: Add event handling for mouse scroll events. (Christopher
Plewright, closes #11374)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 16 Oct 2022 21:00:04 +0200 |
parents | 9d7914012b82 |
children |
rev | line source |
---|---|
30604
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 Test that vim9script also works without the +eval feature. |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 STARTTEST |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 :/^START/+1,/^END/-1:w! Xvim9 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 :so Xvim9 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 ENDTEST |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 START |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 vim9script |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 if 1 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 echo 'this is skipped without +eval' |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 endif |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
15 # colon required for a range |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
16 :$-1,$w! test.out |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
17 qa! |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
18 END |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
19 |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
20 first line |
9d7914012b82
patch 9.0.0637: syntax of commands in Vim9 script depends on +eval feature
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
21 last line |