Ecosyste.ms: OpenCollective

An open API service for software projects hosted on Open Collective.

github.com/macvim-dev/macvim

Vim - the text editor - for macOS
https://github.com/macvim-dev/macvim

patch 8.2.4070: using uninitialized memory when reading empty file

Problem: Using uninitialized memory when reading empty file.
Solution: Check for empty file...

f5d639a8af719eb8ecb141b5c0890627e4d83134 authored almost 3 years ago by Dominique Pelle <[email protected]>
patch 8.2.4069: Vim9: import test fails on MS-Windows

Problem: Vim9: import test fails on MS-Windows.
Solution: Ignore case. Adjust test to avoi...

5d9826973d9f4c6ffbb5648676bb628660c62906 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4068: Vim9: import test fails

Problem: Vim9: import test fails.
Solution: Add missing change.

f479cac084c7ddd9f20944c8978d39f3ef092868 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4067: Vim9: cannot call imported function with :call

Problem: Vim9: cannot call imported function with :call. (Drew Vogel)
Solution: Translate t...

f111cdfae6edf697390e0d9a85082a6526b03da6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4066: Vim9: imported autoload script loaded again

Problem: Vim9: imported autoload script loaded again.
Solution: Do not create a new importe...

17d36cbcd36d944c744ef68afa971718959b2111 authored almost 3 years ago by Bram Moolenaar <[email protected]>
Merge remote-tracking branch 'vim/master'

bf09027d7c61e73ac4fe4727901208700587021d authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.4065: computation overflow with large cound for :yank

Problem: Computation overflow with large cound for :yank.
Solution: Avoid an overflow.

3cf21b305104e91a28e4ce3a473672b2e88a9469 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4064: foam files are not detected

Problem: Foam files are not detected.
Solution: Detect the foam filetype by the path and fi...

2284f6cca384e0ccc352bfec7277dc26386cac3d authored almost 3 years ago by Elwardi <[email protected]>
patch 8.2.4063: Vim9: exported function in autoload script not found

Problem: Vim9: exported function in autoload script not found. (Yegappan
Lakshman...

b8822442d716df0230c79531132e530e95cc17e3 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4062: match highlighting of tab too short

Problem: Match highlighting of tab too short.
Solution: Do not stop match highlighting if o...

0bbca540f7377889e2154aa5731f6eeffcb5c0cc authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4061: codecov bash script is deprecated

Problem: Codecov bash script is deprecated.
Solution: Use the codecov action. (Ozaki Kiichi...

0d47ad40274ed9c7ace636b2a4063182c905a2b4 authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.4060: win_execute() slow on systems where getcwd()/chdir() is slow

Problem: win_execute() is slow on systems where getcwd() or chdir() is
slow. (Ric...

d6f27c66cca32b93fcf8024b1bad1618946bbbea authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4059: Vim9: an expression of a map cannot access script-local items

Problem: Vim9: an expression of a map cannot access script-local items.
(Maxim Ki...

19db9e6ba710ca32f0f5e0c2ca2ba69f8228b833 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4058: Vim9: import test failure in wrong line

Problem: Vim9: import test failure in wrong line.
Solution: Adjust line number.

762838218feb223f53ab87d80928dadd991a1746 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4057: Vim9: not fully implementing the autoload mechanism

Problem: Vim9: not fully implementing the autoload mechanism.
Solution: Allow for exporting...

160aa86a9d5f4b99437bf48ef16400de33bf2f50 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4056: Vim9: memory leak when exporting function in autoload script

Problem: Vim9: memory leak when exporting function in autoload script.
Solution: Fee the na...

6990b78f253eb7f3ebd296fd5c8353e3da1cc8f2 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4055: Vim9: line break in expression causes v:errmsg to be fillec

Problem: Vim9: line break in expression causes v:errmsg to be filled.
(Yegappan L...

5e6b9882fe0218ae4878f6ad0561c8654a2277d8 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4054: Vim9 script test fails

Problem: Vim9 script test fails.
Solution: Add missing change.

577bd85d55f30019c890ec80fd44d91108ec35c9 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4053: Vim9: autoload mechanism doesn't fully work yet

Problem: Vim9: autoload mechanism doesn't fully work yet.
Solution: Define functions and va...

fe2ef0b2cda0b25c45bd9e320f8b77931ee8ef2e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4052: not easy to resize a window from a plugin

Problem: Not easy to resize a window from a plugin.
Solution: Add win_move_separator() and ...

ee63031b572eb7aea27be4c7e3dafba0daaf681b authored almost 3 years ago by Daniel Steinberg <[email protected]>
patch 8.2.4051: compiler complains about possibly uninitialized variable

Problem: Compiler complains about possibly uninitialized variable.
Solution: Add code to av...

b06cfcf5a3b0248527fd70f9323272aa96db2f56 authored almost 3 years ago by Bram Moolenaar <[email protected]>
Merge remote-tracking branch 'vim/master'

476ef41de8dfb2a2542a8f1a7ef528491c5de4f0 authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.4050: Vim9: need to prefix every item in an autoload script

Problem: Vim9: need to prefix every item in an autoload script.
Solution: First step in sup...

dc4451df61a6aa12a0661817b7094fb32f09e11d authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4049: Vim9: reading before the start of the line with "$"

Problem: Vim9: reading before the start of the line with "$" by itself.
Solution: Do not su...

5f25c3855071bd7e26255c68bf458b1b5cf92f39 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4048: gcc complains about use of "%p" in printf

Problem: gcc complains about use of "%p" in printf.
Solution: Add (void *) typecast. (Domin...

c14f667626ba677a767d474324306e39096dc43e authored almost 3 years ago by Dominique Pelle <[email protected]>
patch 8.2.4047: depending on the build features error messages are unused

Problem: Depending on the build features error messages are unused.
Solution: Add #ifdefs. ...

f85a424c832777892c4efaff163c2fa710ce8d91 authored almost 3 years ago by Dominique Pelle <[email protected]>
Update runtime files

2f0936cb9a2eb026acac03e6a8fd0b2a5d97508b authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4046: some error messages not in the right place

Problem: Some error messages not in the right place.
Solution: Adjust the errors file. Fix...

b2810f123cbf4b585f8bc5f0e594a6690d95729a authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4045: some global functions are only used in one file

Problem: Some global functions are only used in one file.
Solution: Make the functions stat...

782b43d89473dac00e3a8e02224a8330b88dbfef authored almost 3 years ago by Yegappan Lakshmanan <[email protected]>
patch 8.2.4044: Vim9: no error when importing the same script twice

Problem: Vim9: no error when importing the same script twice.
Solution: Give an error, unle...

7c24dfddc28776eeff7464982ae5b94e187b6135 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4043: using int for second argument of ga_init2()

Problem: Using int for second argument of ga_init2().
Solution: Remove unnessary type cast ...

04935fb17e5f0f66b82cf4546b9752d3d1fa650e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4042: Vim9: build error

Problem: Vim9: build error.
Solution: Use grow array instead of character pointer.

143367256836b0f69881dc0c65ff165ae091dbc5 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4041: using unitialized pointer

Problem: Using unitialized pointer.
Solution: Store "ht" when variable is in another script.

aa9b3cacd52a6c34591bbd89fb6b06d4c097fe03 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4040: keeping track of allocated lines is too complicated

Problem: Keeping track of allocated lines in user functions is too
complicated.
S...

9f1a39a5d1cd7989ada2d1cb32f97d84360e050f authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4039: the xdiff library is linked in even when not used

Problem: The xdiff library is linked in even when not used.
Solution: Use configure to deci...

67ffb417861a90fd2c1b215a42fd230272ed94cb authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4038: various code not used when features are disabled

Problem: Various code not used when features are disabled.
Solution: Add #ifdefs. (Dominiqu...

748b308eebe8d8860888eb27da08333f175d547d authored almost 3 years ago by Dominique Pelle <[email protected]>
patch 8.2.4037: Insert mode completion is insufficiently tested

Problem: Insert mode completion is insufficiently tested.
Solution: Add more tests. Fix un...

370791465e745354d66696de8cbd15504cf958c0 authored almost 3 years ago by Yegappan Lakshmanan <[email protected]>
patch 8.2.4036: Vim9: script test file is getting too long

Problem: Vim9: script test file is getting too long.
Solution: Split the import/export func...

d844862bcec5db210116847a67de93578ba781d7 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4035: timer triggered at the debug prompt may cause trouble

Problem: Timer triggered at the debug prompt may cause trouble.
Solution: Do not trigger an...

48d0ac775cb2da3b5aa9d46711ff17c50ce0f707 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4034: Coverity warns for possibly using a NULL pointer

Problem: Coverity warns for possibly using a NULL pointer.
Solution: Check v_partial is not...

62a099cc6dbfc31c0ced3f6d895711208bf10518 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4033: running filetype tests leaves directory behind

Problem: Running filetype tests leaves directory behind.
Solution: Delete the top directory...

a4c96252b12c9ebc0ba563694c064e500d707b06 authored almost 3 years ago by zeertzjq <[email protected]>
patch 8.2.4032: ATTRIBUTE_NORETURN is not needed

Problem: ATTRIBUTE_NORETURN is not needed.
Solution: Use NORETURN(). (Ozaki Kiichi, closes ...

e12406526a24768e6121450112eb2f9f92445ac5 authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.4031: crash in xterm with only two lines

Problem: Crash in xterm with only two lines. (Dominique Pellé)
Solution: Only perform xterm...

d1f34e64f0e1a9ddaed76623bc40e669f2d09260 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4030: a script local funcref is not found from a mapping

Problem: A script local funcref is not found from a mapping.
Solution: When looking for a f...

71f21938bc9f4f6c0e52c178f51cb19be9804690 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4029: debugging NFA regexp my crash, cached indent may be wrong

Problem: Debugging NFA regexp my crash, cached indent may be wrong.
Solution: Fix some debu...

b2d85e3784ac89f5209489844c1ee0f54d117abb authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4028: ml_get error with :doautoall and Visual area

Problem: ml_get error with :doautoall and Visual area. (Sean Dewar)
Solution: Disable Visua...

cb1956d6f2aece8ad93e19e5d4c7e0b5e405f056 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4027: import test fails on MS-Windows

Problem: Import test fails on MS-Windows.
Solution: Use a different directory name.

2b04d5f1ef0dfaac1706e413947a7297285fa7b9 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4026: ml_get error with specific win_execute() command

Problem: ml_get error with specific win_execute() command. (Sean Dewar)
Solution: Check cur...

e664a327014f4aa8baf8549a34a4caab2f3116a3 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4025: error for import not ending in .vim does not work for .vimrc

Problem: Error for import not ending in .vim does not work for .vimrc.
Solution: Check that...

834d41853e12b9022f60b08c32480928c2a9e48f authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4024: confusing error message if imported name is used directly

Problem: Confusing error message if imported name is used directly.
Solution: Give a better...

32884ad753ffb462d27998beb50678888209075f authored almost 3 years ago by Bram Moolenaar <[email protected]>
Merge remote-tracking branch 'vim/master'

28105c66fbbe12532e28fdb7990b25dec7454b14 authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.4023: using uninitialized variable

Problem: Using uninitialized variable.
Solution: Initialize "ufunc" also when an item is no...

a909c48bec1f7ae13a9143b5d627c40cac5b240e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4022: two error messages in the wrong file

Problem: Two error messages in the wrong file.
Solution: Use the error message from errors.h.

11de43d2d476c449587f1f0712924890ab677708 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4021: missing part of the :import changes

Problem: Missing part of the :import changes.
Solution: Add changes in vim9cmds.c.

2ef01d929d094c9063a259a74e23cf61be74b9b6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4020: debugger test fails

Problem: Debugger test fails.
Solution: Fix import statement.

84c62d59a3604d15c447f28e89679944a4926cc3 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4019: Vim9: import mechanism is too complicated

Problem: Vim9: import mechanism is too complicated.
Solution: Do not use the Javascript mec...

d5f400c607182db6d4fbe2964471d796277f67e8 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4018: ml_get error when win_execute redraws with Visual selection

Problem: ml_get error when win_execute redraws with Visual selection.
Solution: Disable Vis...

18f4740f043b353abe47b7a00131317052457686 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4017: gcc warns for misleading indent in Athena menu code

Problem: Gcc warns for misleading indent in Athena menu code.
Solution: Add curlies around ...

a33737b6d80f5461c1c6c4c96b5bc4964a737927 authored almost 3 years ago by Dominique Pelle <[email protected]>
patch 8.2.4016: Vim9: incorrect error for argument that is shadowing var

Problem: Vim9: incorrect error for argument that is shadowing var.
Solution: Ignore variabl...

58493cfae255adec2d5b407593b82d07abcc0975 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4015: build failure with tiny features

Problem: Build failure with tiny features. (Tony Mechelynck)
Solution: Adjust #ifdefs.

269dc6361888ca23ef8d87f2795753f0bacd95e6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4014: git and gitcommit file types not properly recognized

Problem: Git and gitcommit file types not properly recognized.
Solution: Adjust filetype de...

c689f8c3d98fffe7e13730e198ce120934528f9c authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4013: build failure without the spell feature

Problem: Build failure without the spell feature.
Solution: Adjust #ifdefs.

e60b3c47d701e73ecbadb1b9a12bf82010cadae8 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4012: error messages are spread out

Problem: Error messages are spread out.
Solution: Move the last error messages to errors.h.

d82a47dd0493ee976aa3f15ecdc9aea7da6ad5bf authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4011: test fails because of changed error number

Problem: Test fails because of changed error number.
Solution: Restore old duplicate error ...

bb8cac56d9c398a2b546d9c81c15e8c3d8fd811e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4010: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

9d00e4a8146862c17ed429dc6b1b43349acb2b5f authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4009: reading one byte beyond the end of the line

Problem: Reading one byte beyond the end of the line.
Solution: Check for NUL byte first.

d3a117814d6acbf0dca3eff1a7626843b9b3734a authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4008: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

677658ae49de31fe2e5b1fa6d93fdfab85a4362e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4007: session does not restore help buffer properly

Problem: Session does not restore help buffer properly when "options' is
missing ...

8e7d9db32b53ca2b1cb7570d2042860bcd1e943f authored almost 3 years ago by matveyt <[email protected]>
patch 8.2.4006: Vim9: crash when declaring variable on the command line

Problem: Vim9: crash when declaring variable on the command line.
Solution: Use a temporary...

c653e4a2bd4099e2fac8e1c448a0f34581d5a658 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4005: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

a6f7929e62c19a6a2418a016b4c59b83eb1887ac authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4004: old compiler complains about struct init with variable

Problem: Old compiler complains about struct init with variable.
Solution: Set the struct m...

548911ee145cdd166f20e46aa720d1631e66f64e authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4003: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

d88be5be80f47826397d12ffc90150a443821f2b authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.4002: first char typed in Select mode can be wrong

Problem: First char typed in Select mode can be wrong.
Solution: Escape special bytes in th...

6cac77016b1636e04073e8348b7cee02259ef928 authored almost 3 years ago by zeertzjq <[email protected]>
patch 8.2.4001: insert complete code uses global variables

Problem: Insert complete code uses global variables.
Solution: Make variables local to the ...

d94fbfc74a8b8073e7a256c95fa6f39fc527c726 authored almost 3 years ago by Yegappan Lakshmanan <[email protected]>
patch 8.2.4000: Coverity warns for checking for NULL pointer after using it

Problem: Coverity warns for checking for NULL pointer after using it.
Solution: Remove chec...

fcd1635a4680d53090baa433996954bfe0642366 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3999: redundant check for NUL byte

Problem: Redundant check for NUL byte.
Solution: Remove the check for a NUL byte. (closes #...

c024ed9233feac4c8da7394a62bb50474803514f authored almost 3 years ago by zeertzjq <[email protected]>
patch 8.2.3998: asan error for adding zero to NULL

Problem: Asan error for adding zero to NULL.
Solution: Do not compute pointer if there are ...

48824e952f7db8ca657fe20e66456fc19fca6815 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3997: Vim9: not enough testing for extend() and map()

Problem: Vim9: not enough testing for extend() and map().
Solution: Add more test cases. F...

10d6f18b2f9090d19dd884827c4be59a20b446bf authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3996: Vim9: type checking lacks information about declared type

Problem: Vim9: type checking for list and dict lacks information about
declared t...

078a46161e8b1b30bf306d6c1f4f0af7c616a989 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3995: not all sshconfig files are detected as such

Problem: Not all sshconfig files are detected as such.
Solution: Adjust the patterns used f...

9acf2d8be93f3b50607279e7f3484b019675d0a7 authored almost 3 years ago by David Auer <[email protected]>
patch 8.2.3994: Vim9: extend() complains about type when it was not declared

Problem: Vim9: extend() complains about the type even when it was not
declared.
S...

ad8f2485856eadb931ebd1f633ca366a40e415b8 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3993: when recording a change in Select mode char appears twice

Problem: When recording a change in Select mode the first typed character
appears...

c88e977862ba6477a3b5b28706c45f96069a3073 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3992: wrong local-additions in the help with language mix

Problem: Wrong local-additions in the help with language mix.
Solution: Adjust how the loca...

0e2508d9e63e63414de2c06b3c8a446fdfe4470b authored almost 3 years ago by h-east <[email protected]>
patch 8.2.3991: Vim9: error when extending dict<any>

Problem: Vim9: error when extending dict<any> with another type that it was
initi...

114dbda7858df956161c0adba5d4d8279645ff67 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3990: testing wrong operator

Problem: Testing wrong operator.
Solution: Test "g@" instead of "r_". (Naohiro Ono, closes ...

5c75eed758fbeb39825834d51f3ee4e08f137af3 authored almost 3 years ago by naohiro ono <[email protected]>
patch 8.2.3989: some insert completion code is not tested

Problem: Some insert completion code is not tested.
Solution: Add a few tests. Refactor th...

e982586f8eebf2b055987218f6d3f7a084c4bf69 authored almost 3 years ago by Yegappan Lakshmanan <[email protected]>
Merge remote-tracking branch 'vim/master'

ff2c55d98ba73388a7482f962878064c3d734ae6 authored almost 3 years ago by ichizok <[email protected]>
patch 8.2.3988: tiny build fails

Problem: Tiny build fails.
Solution: Fix misplaced #ifdef.

475d9521baaeb060ebb915d678094ff28e67b5be authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3987: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

1d423ef75fc8bce2edfd2aab61cc9beaa63e31aa authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3986: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

b09feaa86ecc53b9b953710082496951776dc5c6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3985: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

ac78dd4a352196ca4e6640f8e4caaf126afd49e3 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3984: debugger test fails

Problem: Debugger test fails.
Solution: Adjust the test for modified debugging of a for loop.

3d0da09bb2d31afc611bf1c4b35796739d87ed63 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3983: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

eaaac014a01ce37c1f86dbda054c01a5c6f034e7 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3982: some lines of code not covered by tests

Problem: Some lines of code not covered by tests.
Solution: Add a few more test cases. (Dom...

8bfa0eb863357c1013024233ebb2e95a0a848002 authored almost 3 years ago by Dominique Pelle <[email protected]>
patch 8.2.3981: Vim9: debugging a for loop doesn't stop before it starts

Problem: Vim9: debugging a for loop doesn't stop before it starts.
Solution: Keep the DEBUG...

2b4ecc2c31c00df6e1c8ad46a3e4eabb1f1f84e3 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3980: if 'operatorfunc' invokes an operator Visual mode is changed

Problem: If 'operatorfunc' invokes an operator the remembered Visual mode
may be ...

b3bd1d39e68e2d697c014b9f85482c2c12a3f909 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3979: Vim9: the feature is not mentioned in the right places

Problem: Vim9: the feature is not mentioned in the right places.
Solution: Add +vim9script ...

a6feb163f0295dfefb829d93ba3fa659b9c262b6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3978: build error when using dynamycally loaded Python 3

Problem: Build error when using dynamycally loaded Python 3.
Solution: Adjust #ifdef.

6b1a99dfe33cf5a1d7f82febd81face85ac1b8a6 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3977: error messages are spread out

Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.

9a846fbaa569b3690d70606f2a86e97f77a05496 authored almost 3 years ago by Bram Moolenaar <[email protected]>
patch 8.2.3976: FEARG_LAST is never used

Problem: FEARG_LAST is never used. (Dominique Pellé)
Solution: Remove FEARG_LAST and the re...

b34689010a587e85ff724051f276513a15c634d0 authored almost 3 years ago by Bram Moolenaar <[email protected]>