Mercurial > vim
annotate src/testdir/test_version.vim @ 34159:58a6e51b437b v9.1.0040
patch 9.1.0040: issue with prompt buffer and hidden buffer
Commit: https://github.com/vim/vim/commit/f267847017976ab85117bdf75b45e769836f8d69
Author: zeertzjq <zeertzjq@outlook.com>
Date: Wed Jan 17 21:22:59 2024 +0100
patch 9.1.0040: issue with prompt buffer and hidden buffer
Problem: Modifying a hidden buffer still interferes with prompt buffer
mode changes.
Solution: Save and restore b_prompt_insert.
(zeertzjq)
closes: #13875
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
Modifying hidden buffer still interferes with prompt buffer mode changes
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Wed, 17 Jan 2024 21:30:03 +0100 |
parents | dfdd973cf0c9 |
children |
rev | line source |
---|---|
20035
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Test :version Ex command |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 |
23913
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
3 so check.vim |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
4 so shared.vim |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
5 |
20035
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 func Test_version() |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 " version should always return the same string. |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 let v1 = execute('version') |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 let v2 = execute('version') |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 call assert_equal(v1, v2) |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 call assert_match("^\n\nVIM - Vi IMproved .*", v1) |
4c9acbd6b3c7
patch 8.2.0573: using :version twice leaks memory
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 endfunc |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20035
diff
changeset
|
14 |
23913
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
15 func Test_version_redirect() |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
16 CheckNotGui |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
17 CheckCanRunGui |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
18 CheckUnix |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
19 |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
20 call RunVim([], [], '--clean -g --version >Xversion 2>&1') |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
21 call assert_match('Features included', readfile('Xversion')->join()) |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
22 |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
23 call delete('Xversion') |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
24 endfunc |
dfdd973cf0c9
patch 8.2.2499: "vim -g --version" does not redirect output
Bram Moolenaar <Bram@vim.org>
parents:
21765
diff
changeset
|
25 |
21765
08940efa6b4e
patch 8.2.1432: various inconsistencies in test files
Bram Moolenaar <Bram@vim.org>
parents:
20035
diff
changeset
|
26 " vim: shiftwidth=2 sts=2 expandtab |