Bram Moolenaar
079ba76ae7
Update runtime files
2021-10-23 12:08:41 +01:00
Bram Moolenaar
06ca48a40f
patch 8.2.3558: Vim9: asserting the wrong variable
...
Problem: Vim9: asserting the wrong variable.
Solution: Don't use Foo, use Goo.
v8.2.3558
2021-10-23 10:25:21 +01:00
Bram Moolenaar
5fe07d2e08
patch 8.2.3557: Vim9: cannot call imported funcref at script level
...
Problem: Vim9: cannot call imported funcref at script level.
Solution: Check for an imported function. (closes #9007 )
v8.2.3557
2021-10-22 22:17:53 +01:00
Bram Moolenaar
841c225b9e
patch 8.2.3556: filler lines are incorrect for other window in diff mode
...
Problem: Filler lines are incorrect for other window in diff mode after
making a change.
Solution: Copy filler lines from the current window. (closes #8809 )
v8.2.3556
2021-10-22 20:56:55 +01:00
=?UTF-8?q?Magnus=20Gro=C3=9F?=
25def2c8b8
patch 8.2.3555: ModeChanged is not triggered on every mode change
...
Problem: ModeChanged is not triggered on every mode change.
Solution: Also trigger on minor mode changes. (Maguns Gross, closes #8999 )
v8.2.3555
2021-10-22 18:56:39 +01:00
DungSaga
a2ffb43520
patch 8.2.3554: xxd has various way to exit
...
Problem: Xxd has various way to exit.
Solution: Add function to print error and exit. (closes #9035 )
v8.2.3554
2021-10-22 15:55:31 +01:00
Bram Moolenaar
5a5c111e79
patch 8.2.3553: xxd test fails on MS-Windows
...
Problem: Xxd test fails on MS-Windows.
Solution: Split shell command in two.
v8.2.3553
2021-10-22 15:11:37 +01:00
DungSaga
47810464aa
patch 8.2.3552: xxd revert does not handle end of line correctly
...
Problem: Xxd revert does not handle end of line correctly.
Solution: Check for newline first. (closes #9034 )
v8.2.3552
2021-10-22 12:55:42 +01:00
itchyny
94e7d345c1
patch 8.2.3551: checking first character of url twice
...
Problem: Checking first character of url twice.
Solution: Only check once. (closes #9026 )
v8.2.3551
2021-10-21 18:01:13 +01:00
Shougo Matsushita
ae38a9db77
patch 8.2.3550: completion() does not work properly
...
Problem: completion() does not work properly.
Solution: Set xp_line and add WILD_HOME_REPLACE. (Shougo Matsushita,
closes #9016 )
v8.2.3550
2021-10-21 11:39:53 +01:00
zeertzjq
b811de5d49
patch 8.2.3549: mistakes in test comments
...
Problem: Mistakes in test comments.
Solution: Fix the comments. (closes #9029 )
v8.2.3549
2021-10-21 10:50:44 +01:00
Bram Moolenaar
d68a004485
patch 8.2.3548: GTK GUI crashen when reading from stdin
...
Problem: GTK GUI crashen when reading from stdin.
Solution: Do not overwrite the NUL after the string. (closes #9028 )
v8.2.3548
2021-10-20 23:08:11 +01:00
Bram Moolenaar
1d30fde3c9
patch 8.2.3547: opening the quickfix window triggers BufWinEnter twice
...
Problem: Opening the quickfix window triggers BufWinEnter twice. (Yorick
Peterse)
Solution: Only trigger BufWinEnter with "quickfix". (closes #9022 )
v8.2.3547
2021-10-20 21:58:42 +01:00
zeertzjq
09f7723d5a
patch 8.2.3546: build failure without the +eval feature
...
Problem: Build failure without the +eval feature.
Solution: Add #ifdef. (closes #9025 )
v8.2.3546
2021-10-20 17:21:24 +01:00
zeertzjq
94358a1e6e
patch 8.2.3545: setcellwidths() may make 'listchars' or 'fillchars' invalid
...
Problem: setcellwidths() may make 'listchars' or 'fillchars' invalid.
Solution: Check the value and give an error. (closes #9024 )
v8.2.3545
2021-10-20 11:01:15 +01:00
itchyny
051a40c8d9
patch 8.2.3544: Unix: may leak file descriptor using non-existing directory
...
Problem: Unix: may leak file descriptor when using a non-existing
directory.
Solution: Always close the file. (closes #9023 )
v8.2.3544
2021-10-20 10:00:05 +01:00
Bram Moolenaar
8b0e62c93b
patch 8.2.3543: swapname has double slash when 'directory' ends in it
...
Problem: Swapname has double slash when 'directory' ends in double slash.
(Shane Smith)
Solution: Remove the superfluous slash. (closes #8876 )
v8.2.3543
2021-10-19 22:12:25 +01:00
Bram Moolenaar
c5935a859e
patch 8.2.3542: too many comments are old style
...
Problem: Too many comments are old style.
Solution: Change comments to // style. (closes #9021 )
v8.2.3542
2021-10-19 20:48:52 +01:00
Bram Moolenaar
731fba1081
patch 8.2.3541: compiler warning for unused variable in tiny version
...
Problem: Compiler warning for unused variable in tiny version.
Solution: Add #ifdef. (John Marriott)
v8.2.3541
2021-10-19 20:24:34 +01:00
Bram Moolenaar
f47ebf1e1a
patch 8.2.3540: the mark '] is wrong after put with a count
...
Problem: The mark '] is wrong after put with a count. (Naohiro Ono)
Solution: Use the right line number. (closes #8956 )
v8.2.3540
2021-10-19 20:08:45 +01:00
Bram Moolenaar
604e207e27
patch 8.2.3539: GTK3: with 'rightleft' set scrollbar may move unintentionally
...
Problem: GTK3: with 'rightleft' set scrollbar may move unintentionally.
Solution: Ignore events while moving the scrollbar thumb. (closes #8958 )
v8.2.3539
2021-10-19 14:22:03 +01:00
Yegappan Lakshmanan
d43d8e28db
patch 8.2.3538: else-if indenting is confusing
...
Problem: Else-if indenting is confusing.
Solution: Add curly brackets. (Yegappan Lakshmanan, closes #9017 )
v8.2.3538
2021-10-19 13:44:52 +01:00
naohiro ono
75c30e96cf
patch 8.2.3537: mode() does not return the right value in 'operatorfunc'
...
Problem: mode() does not return the right value in 'operatorfunc'.
Solution: Reset finish_op while calling 'operatorfunc'.
v8.2.3537
2021-10-19 11:15:41 +01:00
Yegappan Lakshmanan
ad6b90c33c
patch 8.2.3536: the do_highlight() function is way too long
...
Problem: The do_highlight() function is way too long.
Solution: Split it into several functions. (Yegappan Lakshmanan,
closes #9011 )
v8.2.3536
2021-10-18 22:13:57 +01:00
Dominique Pelle
9b0b844d25
patch 8.2.3535: if-else indenting is confusing
...
Problem: If-else indenting is confusing.
Solution: Add curly brackets and indent. (Dominique Pellé, closes #9010 )
v8.2.3535
2021-10-18 20:56:39 +01:00
Bram Moolenaar
944eeb44fb
patch 8.2.3534: autoread test is a bit flaky
...
Problem: Autoread test is a bit flaky.
Solution: Wait a brief moment before overwriting the file.
v8.2.3534
2021-10-18 14:37:13 +01:00
DungSaga
375c35a63f
patch 8.2.3533: inefficient code in xxd
...
Problem: Inefficient code in xxd.
Solution: Don't use "p" when "hextype" is non-zero. (closes #9013 )
v8.2.3533
2021-10-18 13:16:03 +01:00
Bram Moolenaar
e08aee60ab
patch 8.2.3532: the previous '' mark is restored after moving the cursor
...
Problem: The previous '' mark is restored after moving the cursor to the
original jump position. (Tony Chen)
Solution: Forget the previous position after checking. (closes #8985 )
v8.2.3532
2021-10-17 21:53:58 +01:00
Bram Moolenaar
39c47c3104
patch 8.2.3531: command line completion test fails on MS-Windows
...
Problem: Command line completion test fails on MS-Windows.
Solution: Do not test with "\{" on MS-Windows.
v8.2.3531
2021-10-17 18:05:26 +01:00
Bram Moolenaar
21c1a0c2f1
patch 8.2.3530: ":buf \{a}" fails while ":edit \{a}" works
...
Problem: ":buf \{a}" fails while ":edit \{a}" works.
Solution: Unescape "\{". (closes #8917 )
v8.2.3530
2021-10-17 17:20:23 +01:00
Atsushi SUGAWARA
34a364877f
patch 8.2.3529: xxd usage output is incomplete
...
Problem: Xxd usage output is incomplete.
Solution: Add "bytes" to "-g" flag. (Atsushi Sugawara, closes #8944 )
v8.2.3529
2021-10-17 16:09:08 +01:00
Bram Moolenaar
f4d8b76d30
patch 8.2.3528: 'thesaurus' and 'thesaurusfunc' do not have the same scope
...
Problem: 'thesaurus' and 'thesaurusfunc' do not have the same scope.
Solution: Make 'thesaurusfunc' global-local.
v8.2.3528
2021-10-17 14:13:09 +01:00
Bram Moolenaar
9d4b8caf9e
patch 8.2.3527: gcc complains about uninitialized variable
...
Problem: Gcc complains about uninitialized variable. (Tony Mechelynck)
Solution: Initialize it.
v8.2.3527
2021-10-17 11:33:47 +01:00
Bram Moolenaar
40bd5a1540
patch 8.2.3526: tests have clumsy check for X11 based GUI
...
Problem: Tests have clumsy check for X11 based GUI.
Solution: Add CheckX11BasedGui.
v8.2.3526
2021-10-16 21:58:27 +01:00
Bram Moolenaar
d4c4bfa007
patch 8.2.3525: option variable name does not match option name
...
Problem: Option variable name does not match option name. (Christ van
Willigen)
Solution: Rename the variable.
v8.2.3525
2021-10-16 21:14:11 +01:00
Dusan Popovic
4eeedc09fe
patch 8.2.3524: GUI: ligatures are not used
...
Problem: GUI: ligatures are not used.
Solution: Add the 'guiligatures' option. (Dusan Popovic, closes #8933 )
v8.2.3524
2021-10-16 20:52:05 +01:00
DungSaga
c89c91cafd
patch 8.2.3523: duplicated code in xxd
...
Problem: Duplicated code in xxd.
Solution: Remove duplicated lines. (closes #8972 )
v8.2.3523
2021-10-16 19:07:46 +01:00
Bram Moolenaar
93ff6720fe
patch 8.2.3522: cannot use \x and \u when setting 'listchars'
...
Problem: Cannot use \x and \u when setting 'listchars'.
Solution: Support hex and unicode in hex form. (closes #9006 )
v8.2.3522
2021-10-16 17:51:40 +01:00
Bram Moolenaar
abdcfd1c83
patch 8.2.3521: options completion test fails
...
Problem: Options completion test fails.
Solution: Add 'thesaurusfunc' to the results.
v8.2.3521
2021-10-16 16:48:27 +01:00
Yegappan Lakshmanan
160e994d76
patch 8.2.3520: cannot define a function for thesaurus completion
...
Problem: Cannot define a function for thesaurus completion.
Solution: Add 'thesaurusfunc'. (Yegappan Lakshmanan, closes #8987 ,
closes 8950)
v8.2.3520
2021-10-16 15:41:29 +01:00
Bram Moolenaar
2286304cdb
Update runtime files
2021-10-16 15:23:36 +01:00
Aman Verma
28b6a3bef6
patch 8.2.3519: TOML files are not recognized
...
Problem: TOML files are not recognized.
Solution: Add filetype patterns for TOML. (Aman Verma, closes #8984 )
v8.2.3519
2021-10-16 13:44:04 +01:00
Bram Moolenaar
f08b0eb869
patch 8.2.3518: Test_xrestore sometimes fails
...
Problem: Test_xrestore sometimes fails.
Solution: Mark the test as flayky. Move marking test as flaky to the test
instead of listing them in runtest.
v8.2.3518
2021-10-16 13:00:14 +01:00
Christian Brabandt
db3b44640d
patch 8.2.3517: TextChanged does not trigger after TextChangedI
...
Problem: TextChanged does not trigger after TextChangedI.
Solution: Store the tick separately for TextChangedI. (Christian Brabandt,
closes #8968 , closes #8932 )
v8.2.3517
2021-10-16 11:58:55 +01:00
Milly
7b5f45be21
patch 8.2.3516: terminal window does not have transparent background
...
Problem: Terminal window does not have transparent background when
'termguicolors' is used.
Solution: Fix the background color. (closes #2361 , closes #9002 )
v8.2.3516
2021-10-15 22:25:43 +01:00
ichizok
def69dffb3
patch 8.2.3515: nano time test fails on Mac and FreeBSD
...
Problem: Nano time test fails on Mac and FreeBSD.
Solution: Also check nano time when not on Linux. (Ozaki Kiichi,
closes #9000 )
v8.2.3515
2021-10-15 17:23:12 +01:00
Bram Moolenaar
eaa006dae3
patch 8.2.3514: autoread test with nano second time sometimes fails
...
Problem: Autoread test with nano second time sometimes fails.
Solution: Mark the test as being flaky.
v8.2.3514
2021-10-15 17:09:50 +01:00
Bram Moolenaar
a2cff1dbc9
patch 8.2.3513: using freed memory when using a timer and searching
...
Problem: Using freed memory when using a timer and searching. (Dominique
Pellé)
Solution: Allocated mr_pattern.
v8.2.3513
2021-10-15 12:51:29 +01:00
Bram Moolenaar
accf4ed352
patch 8.2.3512: timestamp test fails on some systems
...
Problem: Timestamp test fails on some systems.
Solution: Sleep for a short while.
v8.2.3512
2021-10-15 00:38:02 +01:00
Bram Moolenaar
a06758dd38
patch 8.2.3511: Vim9: entry for loop variable is created every round
...
Problem: Vim9: entry for loop variable is created every round.
Solution: Only create the entry once. (closes #8996 )
v8.2.3511
2021-10-15 00:18:37 +01:00