aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.c
Commit message (Collapse)AuthorAge
...
* vim-patch: bump VIM_VERSION from 8.0 => 8.1 #20762Justin M. Keyes2022-10-21
| | | | There are 6 remaining 8.0.x patches, tracked in: https://github.com/neovim/neovim/issues/5431
* fix(intro): omit patch version in ":help news" item #20713zeertzjq2022-10-18
| | | | Because maintenance releases share the same news.txt as the last non-maintenance release.
* feat: mention ":help news" in intro #20674Gregory Anders2022-10-16
|
* refactor(redraw): various simplificationsbfredl2022-10-05
|
* refactor: replace char_u with charDundar Göc2022-08-29
| | | | Work on https://github.com/neovim/neovim/issues/459
* refactor: replace char_u with charDundar Göc2022-08-26
| | | | Work on https://github.com/neovim/neovim/issues/459
* refactor: change FALSE/TRUE to false/trueLewis Russell2022-08-26
| | | | Co-authored-by: zeertzjq <zeertzjq@outlook.com>
* refactor: replace char_u with charDundar Goc2022-08-25
| | | | Work on https://github.com/neovim/neovim/issues/459
* refactor: pre-incr to post-incrLewis Russell2022-08-25
|
* vim-patch:8.1.2057: the screen.c file is much too bigLewis Russell2022-08-19
| | | | | | | | | | | | | | | Problem: The screen.c file is much too big. Solution: Split it in three parts. (Yegappan Lakshmanan, closes vim/vim#4943) https://github.com/vim/vim/commit/7528d1f6b5422750eb778dfb550cfd0b0e540964 This is an approximation vim-patch 8.1.2057. Applying the patch directly isn't feasible since our version of screen.c has diverged too much, however we still introduce drawscreen.c and drawline.c: - screen.c is now a much smaller file used for low level screen functions - drawline.c contains everything needed for win_line() - drawscreen.c contains everything needed for update_screen() Co-authored-by: zeertzjq <zeertzjq@outlook.com>
* refactor: remove some unused includes (#19820)zeertzjq2022-08-17
| | | Replace grid.h in screen.h and screen.h in buffer.h with grid_defs.h
* refactor: replace char_u with charDundar Goc2022-08-12
| | | | Work on https://github.com/neovim/neovim/issues/459
* version.c: update [skip ci] #19179github-actions[bot]2022-07-01
| | | Co-authored-by: marvim <marvim@users.noreply.github.com>
* refactor: replace char_u #18429dundargoc2022-06-28
| | | Work on https://github.com/neovim/neovim/issues/459
* refactor(uncrustify): set maximum number of consecutive newlines to 2 (#18695)dundargoc2022-05-25
|
* refactor: replace char_u variables and functions with charDundar Goc2022-05-16
| | | | Work on https://github.com/neovim/neovim/issues/459
* fix(version.c): mark N/A vim patches #18587Justin M. Keyes2022-05-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.1119: quitting a split terminal window kills the job N/A, or tracked in https://github.com/neovim/neovim/issues/5431 vim-patch:8.0.1307: compiler warning for ignoring return value N/A vim-patch:8.0.1335: writefile() using fsync() may give an error N/A vim-patch:8.0.1339: no test for what 8.0.1335 fixes already merged in 5972ff00560b497de4cfe51d529b0c5aa9dd4fad vim-patch:8.0.1367: terminal test hangs, executing abcde N/A vim-patch:8.0.1562: the terminal debugger can't set breakpoint with mouse we have all :Termdebug changes vim-patch:8.0.1609: shell commands in the GUI use a dumb terminal tracked in https://github.com/neovim/neovim/issues/5431 vim-patch:8.0.1616: Win32: shell commands in the GUI open a new console (guioptions="!") tracked in https://github.com/neovim/neovim/issues/1496 vim-patch:8.0.1706: cannot sent CTRL-\ to a terminal window already possible via :call chansend()
* refactor: replace char_u variables and functions with charDundar Goc2022-05-07
| | | | Work on https://github.com/neovim/neovim/issues/459
* feat: add "prerelease" to version dictii142022-05-03
|
* refactor(uncrustify): change rules to better align with the style guideDundar Goc2022-04-29
| | | | | | | | | | | | | Add space around arithmetic operators '+' and '-'. Remove space between back-to-back parentheses, i.e. ')(' vs. ') ('. Remove space between '((' or '))' of control statements. Add space between ')' and '{' of control statements. Remove space between function name and '(' on function declaration. Collapse empty blocks between '{' and '}'. Remove newline at the end of the file. Remove newline between 'enum' and '{'. Remove newline between '}' and ')' in a function invocation. Remove newline between '}' and 'while' of 'do' statement.
* vim-patch:8.2.4241: some type casts are redundantDundar Göc2022-01-30
| | | | | | | | Problem: Some type casts are redundant. Solution: Remove the type casts. (closes vim/vim#9643) https://github.com/vim/vim/commit/420fabcd4ffeaf79082a6e43db91e1d363f88f27 This is not a literal port but an equivalent one.
* version.c: update [skip ci]marvim2021-11-19
|
* vim-patch:8.1.0779: argument for message functions is inconsistentJames McCoy2021-11-01
| | | | | | Problem: Argument for message functions is inconsistent. Solution: Make first argument to msg() "char *". https://github.com/vim/vim/commit/32526b3c1846025f0e655f41efd4e5428da16b6c
* refactor: saner options for uncrustify #16196dundargoc2021-10-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * refactor: general good option changes sp_deref = remove sp_not = remove sp_inv = remove sp_inside_paren_cast = remove mod_remove_duplicate_include = true sp_after_semi = add sp_after_semi_for = force sp_sizeof_paren = remove nl_return_expr = remove nl_else_brace = remove nl_else_if = remove * refactor: mod_remove_extra_semicolon = true * refactor: nl_max = 3 * refactor: sp_bool = force * refactor: sp_compare = force * refactor: sp_inside_paren = remove * refactor: sp_paren_paren = remove * refactor: sp_inside_sparen = remove * refactor: sp_before_sparen = force * refactor: sp_sign = remove * refactor: sp_addr = remove * refactor: sp_member = remove * refactor: nl_struct_brace = remove * refactor: nl_before_if_closing_paren = remove * refactor: nl_fdef_brace = force * refactor: sp_paren_comma = force * refactor: mod_full_brace_do = add
* refactor: uncrustify #16090dundargoc2021-10-29
|
* refactor: reduce number of unique char casts (#15995)dundargoc2021-10-12
|
* vim-patch:8.2.3460: some type casts are not needed #15868dundargoc2021-10-02
| | | | | Problem: Some type casts are not needed. Solution: Remove unnecessary type casts. (closes vim/vim#8934) https://github.com/vim/vim/commit/dfa5e464d459f84200a73d178f1ecefe75bbe511
* refactor: format with uncrustify #15872dundargoc2021-10-02
| | | | * refactor: format with uncrustify * refactor: fix function parameter comments
* build: remove CFLAGS from :version in non-debug builds #15424Gregory Anders2021-08-23
| | | A step towards reproducible builds.
* buffer: move BUFEMPTY to a functionThomas Vigouroux2021-07-06
|
* buffer: don't rely on curbuf in BUFEMPTYThomas Vigouroux2021-07-06
|
* version.c: update [skip ci] (#14328)github-actions[bot]2021-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: marvim <marvim@users.noreply.github.com> vim-patch:8.1.1433: win_execute() may leave popup window focused vim-patch:8.1.2257: MS-Windows GUI: scroll wheel always uses current window vim-patch:8.2.0520: tests are not listed in sorted order vim-patch:8.2.2794: Linux users don't know how to get ncurses vim-patch:8.2.2807: build fails with tiny features vim-patch:8.2.2818: no jump added when opening terminal in current window vim-patch:8.2.2823: MS-Windows: launching Vim from installer doesn't open README vim-patch:8.2.2830: terminal colors are not updated when 'background' is set vim-patch:8.2.2836: build failure without the +quickfix feature vim-patch:8.2.2841: MS-Windows: cursor wrong when 'lz' and 'stl' are set vim-patch:8.2.2845: MS-Windows: warning for signed/unsigned comparison vim-patch:8.2.2852: configure can add --as-needed a second time vim-patch:8.2.2859: Tcl test fails because of changed error message vim-patch:8.2.2876: configure cannot detect Python 3.10 vim-patch:8.2.2883: MS-Windows manifest file name is misleading vim-patch:8.2.2889: typo and verbose comment in Makefiles vim-patch:8.2.2891: cannot build with Perl 5.34 vim-patch:8.2.2899: Appveyor script does not detect nmake failure vim-patch:8.2.2907: memory leak when running out of memory vim-patch:8.2.2909: build error with non-Unix system vim-patch:8.2.2913: MS-Windows conpty supports using mouse events vim-patch:8.2.2919: using ":!command" does not work if it uses posix_spawn() vim-patch:8.2.2923: EBCDIC build is broken vim-patch:8.2.2924: superfluous extern declaration vim-patch:8.2.2929: accidentally enable tcl by default vim-patch:8.2.2939: GTK: righthand scrollbar does not show with split window vim-patch:8.2.2940: MS-Windows: cannot see the size when resizing vim-patch:e307073680d498b113c7df8250abd5676de1ed13 vim-patch:8fbd6723af3248a1fa46fa1e610804841603abe5 vim-patch:d52986e7be366b6f8c9e18078648f1c5219c4335 vim-patch:7a212c625362d86327878d57269d63f6a2ca5d2b vim-patch:424e98baab3bf05d7946f99ddfa180ae71570650 vim-patch:2b72821924ff514727b60fb0b647d5caae8336f7 vim-patch:c882e4d169fd5e0364bc91642040337efe7327a6
* version.c: update [ci skip] (#13705)Jan Edmund Lazo2021-01-30
| | | | | | | | | | | | | | | | vim-patch:8.2.2307: a shell command in the vimrc causes terminal output vim-patch:8.2.2312: build failure with Ruby 3.0 and 32 bits vim-patch:8.2.2326: build error with +eval feature but without +spell vim-patch:8.2.2337: configure test for GTK only says "no" vim-patch:8.2.2346: Codecov reports every little coverage drop vim-patch:8.2.2347: build failure without GUI vim-patch:8.2.2348: no check for modified files after focus gained vim-patch:8.2.2352: if focus lost/gained is received twice code is not ignored vim-patch:8.2.2358: wrong #ifdef for use_xterm_like_mouse() vim-patch:8.2.2383: focus escape sequences are not named vim-patch:8.2.2407: old jumplist code is never used vim-patch:8.2.2408: MinGW: "--preprocessor" flag no longer supported vim-patch:8.2.2431: warning for -fno-strength-reduce with Clang 11 vim-patch:8.2.2432: libvterm tests are executed even when libtool doesn't work
* vim-patch:8.2.0005: duplication in version info (#13502)Jan Edmund Lazo2020-12-10
| | | | | Problem: Duplication in version info. Solution: Use preprocessor string concatenation. (Ken Takata, closes vim/vim#5357) https://github.com/vim/vim/commit/502122565665674d914a1feeb15ac4a0bb0c8723
* globals: eliminate "has_mbyte" macroJan Edmund Lazo2020-11-14
| | | | | "has_mbyte" always evaluates to "true". Continue dead code removal, started in https://github.com/neovim/neovim/pull/13275.
* vim-patch:8.2.1973: finding a patch number can be a bit slowJan Edmund Lazo2020-11-11
| | | | | | Problem: Finding a patch number can be a bit slow. Solution: Use binary search. (closes vim/vim#7279) https://github.com/vim/vim/commit/232f4612e2b0a6a205ae385740078f6b8af05e75
* lua: cleanup naming conventions of executor functionsBjörn Linse2020-09-10
|
* version.c: update [ci skip] (#12763)Marvim the Paranoid Android2020-09-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.1.0113: compiler warning for unused variable vim-patch:8.1.0294: MS-Windows: sometimes uses short directory name vim-patch:8.1.0297: MS-Windows: tests fail, Vim crashes vim-patch:8.1.0338: MS-Windows: VTP doesn't work properly with Powershell vim-patch:8.1.0718: a couple compiler warnings vim-patch:8.1.0912: MS-Windows: warning for signed/unsigned vim-patch:8.1.1130: MS-Windows: warning for unused variable vim-patch:8.1.1219: not checking for NULL return from alloc() vim-patch:8.1.1487: older msgfmt cannot generate proper .desktop file vim-patch:8.1.1528: popup_any_visible() is unused vim-patch:8.1.2252: compiler warning for int size vim-patch:8.1.2323: Old MSVC version no longer tested. vim-patch:8.1.2424: MS-Windows: console buffer is resized unnecessarily vim-patch:8.2.0541: Travis CI does not give compiler warnings vim-patch:8.2.0545: unused arguments ignored in non-standard way vim-patch:8.2.0550: some changes in the libvterm upstream code vim-patch:8.2.0553: error for unused argument vim-patch:8.2.0608: warning from clang when building message test vim-patch:8.2.0781: compiler warning for not using value in Lua vim-patch:8.2.0838: MS-Windows: compiler warning for uninitialized variables vim-patch:8.2.0891: clang warns for invalid conversion vim-patch:8.2.1234: Lua build problem with old compiler vim-patch:8.2.1487: Travis: installing snd-dummy is not always useful vim-patch:8.2.1495: "make clean" may delete too many files vim-patch:8.2.1545: ch_logfile() is unclear about closing when forking vim-patch:8.2.1546: build rule for Vim.app is unused vim-patch:8.2.1559: s390x tests work again vim-patch:8.2.1567: no example to use ubsan with clang vim-patch:8.2.1579: reports from asan are not optimal vim-patch:8.2.1583: MS-Windows: cannot easily measure code coverage vim-patch:8.2.1589: term_start() options for size are overruled by 'termwinsize' vim-patch:8.2.1594: pull requests on github do not notify a maintainer vim-patch:8.2.1595: cannot easily see what Vim sends to the terminal vim-patch:8.2.1596: using win_screenpos('.') in tests works but is wrong vim-patch:8.2.1598: starting a hidden terminal resizes the current window vim-patch:8.2.1605: default maintainer on github is wrong
* version.c: update [ci skip] (#12662)Marvim the Paranoid Android2020-08-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.1454: when in silent mode too much output is buffered vim-patch:8.1.0464: MS-Windows: job_info() has cmd without backslashes vim-patch:8.1.0581: double free without the text properties feature vim-patch:8.1.1392: build failure in tiny version vim-patch:8.1.1541: check for ASAN is not reliable vim-patch:8.1.1640: the CursorHold autocommand takes down a balloon vim-patch:8.1.1808: build failure for tiny version vim-patch:8.2.0062: memory test is flaky on FreeBSD vim-patch:8.2.0524: Win32: searching for file matches is slow vim-patch:8.2.0525: Win32: typo in assignment and misplaced paren vim-patch:8.2.0569: build failure with tiny version vim-patch:8.2.0774: t_TI and t_TE are output when using 'visualbell' vim-patch:8.2.1225: linker errors when building with dynamic Python 3.9 vim-patch:8.2.1226: MS-Windows: windows positioning wrong depending on taskbar vim-patch:8.2.1228: scrollbars not flush against the window edges when maximised vim-patch:8.2.1231: MS-Windows: GUI code can be cleaned up vim-patch:8.2.1232: MS-Windows GUI: Snap cancelled by split command vim-patch:8.2.1240: GUI tests sometimes fail because of translations vim-patch:8.2.1245: build failure in tiny version vim-patch:8.2.1248: Netbeans test is flaky in the GUI vim-patch:8.2.1264: terminal getwinpos() test is a bit flaky vim-patch:8.2.1266: Makefile preference were accidentally included vim-patch:8.2.1273: MS-Windows: terminal test may leave file behind vim-patch:8.2.1277: tests on Travis do not run with EXITFREE vim-patch:8.2.1279: some tests on Travis have EXITFREE duplicated vim-patch:8.2.1298: compiler warning for unused argument in small version vim-patch:8.2.1309: build failure with tiny version vim-patch:8.2.1310: configure with Xcode 12 fails to check for tgetent vim-patch:8.2.1312: MS-Windows: terminal test may fail if dir.exe exists vim-patch:8.2.1317: MS-Windows tests on AppVeyor are slow vim-patch:8.2.1318: no status badge for Github CI vim-patch:8.2.1319: status badge for Github CI has wrong link vim-patch:8.2.1321: GitHub CI also runs on tag push vim-patch:8.2.1327: Mac: configure can't find Tcl libraries vim-patch:8.2.1330: Github workflow takes longer than needed vim-patch:8.2.1334: Github workflow timeout needs tuning vim-patch:8.2.1335: CTRL-C in the GUI doesn't interrupt vim-patch:8.2.1336: build failure on non-Unix systems vim-patch:8.2.1346: small build fails vim-patch:8.2.1348: build failure without the eval feature vim-patch:8.2.1353: crash when drawing double-wide character in terminal window vim-patch:8.2.1381: MS-Windows: crash with Python 3.5 when stdin is redirected vim-patch:8.2.1385: no testing on ARM vim-patch:8.2.1389: file missing from the distribution vim-patch:8.2.1402: s390x tests always fail vim-patch:8.2.1422: the Mac GUI implementation is outdated vim-patch:8.2.1424: Mac build fails vim-patch:8.2.1436: function implementing :substitute has unexpected name vim-patch:8.2.1442: outdated references to the Mac Carbon GUI vim-patch:8.2.1448: test 77a for VMS depends on small.vim which does not exist vim-patch:8.2.1449: some test makefiles delete files that are not generated vim-patch:8.2.1456: MS-Windows: test files are not deleted
* version.c: update [ci skip] (#12581)Marvim the Paranoid Android2020-07-03
| | | | | vim-patch:8.2.1107: 'imactivatefunc' and 'imstatusfunc' are not used in the GUI vim-patch:8.2.1115: iminsert test fails when compiled with VIMDLL vim-patch:8.2.1119: configure fails with Xcode 12 beta
* version.c: update [ci skip] (#12524)Marvim the Paranoid Android2020-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.1543: with 'termguicolors' Normal color doesn't work correctly vim-patch:8.1.0089: error when ending the terminal debugger vim-patch:8.1.0557: Termdebug: gdb may use X.Y for breakpoint number vim-patch:8.1.0575: Termdebug: clearing multi-breakpoint does not work vim-patch:8.1.0621: terminal debugger does not handle unexpected debugger exit vim-patch:8.1.1637: after running tests and clean the XfakeHOME directory remains vim-patch:8.1.2105: MS-Windows: system() may crash vim-patch:8.1.2116: no check for out of memory vim-patch:8.1.2149: crash when running out of memory very early vim-patch 8.1.2242: creating docs tags uses user preferences vim-patch:8.2.0599: Netbeans interface insufficiently tested vim-patch:8.2.0673: cannot build Haiku in shadow directory vim-patch:8.2.0676: pattern in list of distributed files does not match vim-patch:8.2.0680: PTYGROUP and PTYMODE are unused vim-patch:8.2.0689: when using getaddrinfo() the error message is unclear vim-patch:8.2.0702: running channel tests may leave running process behind vim-patch:8.2.0709: MS-Windows: compiler warning for int vs size_t vim-patch:8.2.0720: occasional exit when encountering an X error vim-patch:8.2.0727: MS-Windows: new gcc compiler does not support scanf format vim-patch:8.2.0740: minor message mistakes vim-patch:8.2.0741: Python tests fail because of changed message vim-patch:8.2.0744: the name vim is not capatilized in a message vim-patch:8.2.0750: netbeans test is a bit flaky vim-patch:8.2.0756: MS-Windows: still a compiler warning vim-patch:8.2.0762: buffer is not considered modified after setting crypt key vim-patch:8.2.0763: GUI test fails without the terminal feature vim-patch:8.2.0765: In the GUI can't use all the modifiers. vim-patch:8.2.0767: modifyOtherKeys active when using a shell command in autocmd vim-patch:8.2.0770: cannot map CTRL-B when using the GUI vim-patch:8.2.0773: switching to raw mode every time ":" is used vim-patch:8.2.0776: libvterm code lags behind the upstream version vim-patch:8.2.0777: terminal test fails vim-patch:8.2.0778: libvterm code lags behind the upstream version vim-patch:8.2.0779: tmode_T not used everywhere vim-patch:8.2.0780: libvterm code lags behind the upstream version vim-patch:8.2.0783: libvterm code lags behind the upstream version vim-patch:8.2.0784: libvterm code lags behind the upstream version vim-patch:8.2.0785: libvterm code lags behind the upstream version vim-patch:8.2.0786: channel test is flaky on FreeBSD vim-patch:8.2.0787: libvterm code lags behind the upstream version vim-patch:8.2.0788: memory leak in libvterm vim-patch:8.2.0792: build failure with small features vim-patch:8.2.0794: libvterm code lags behind the upstream version vim-patch:8.2.0795: libvterm code lags behind the upstream version vim-patch:8.2.0796: MS-Windows: compiler can't handle C99 construct in libvterm vim-patch:8.2.0797: MS-Windows: compiler still can't handle C99 construct vim-patch:8.2.0798: libvterm code lags behind the upstream version vim-patch:8.2.0799: build fails if snprintf is not available vim-patch:8.2.0800: errors from failing test are unclear vim-patch:8.2.0801: terminal test fails on Mac vim-patch:8.2.0802: libvterm code lags behind the upstream version vim-patch:8.2.0803: libvterm code lags behind the upstream version vim-patch:8.2.0804: libvterm code lags behind the upstream version vim-patch:8.2.0805: terminal key codes test fails on some systems vim-patch:8.2.0808: not enough testing for the terminal window vim-patch:8.2.0811: terminal keycode test is flaky vim-patch:8.2.0813: libvterm code is slightly different from upstream vim-patch:8.2.0816: terminal test fails when compiled with Athena vim-patch:8.2.0828: Travis: regexp patttern doesn't work everywhere vim-patch:8.2.0830: Motif: can't map "!" vim-patch:8.2.0831: compiler warnings for integer sizes vim-patch:8.2.0833: mapping doesn't work in the GUI vim-patch:8.2.0835: Motif: mapping still doesn't work vim-patch:8.2.0837: compiler warning for value set but not used vim-patch:8.2.0842: MS-Windows: channel tests fail vim-patch:8.2.0846: build failure with small features vim-patch:8.2.0849: BeOS code is not maintained and probably unused vim-patch:8.2.0852: cannot map CTRL-S on some systems vim-patch:8.2.0854: xxd cannot show offset as a decimal number vim-patch:8.2.0857: GTK cell height can be a pixel too much vim-patch:8.2.0870: MS-Windows: Control keys don't work in the GUI vim-patch:8.2.0872: XIM code is mixed with multi-byte code vim-patch:8.2.0885: "make shadow" does not link new lua test dir vim-patch:8.2.0889: using old style comments vim-patch:8.2.0903: comparing WINVER does not work correctly vim-patch:8.2.0910: Vim is not reproducibly buildable vim-patch:8.2.0914: MS-Windows: cannot specify a "modified by" text vim-patch:8.2.0931: some remarks about BeOS remain vim-patch:8.2.0939: checking for term escape sequences is long and confusing vim-patch:8.2.0940: build failure with tiny features vim-patch:8.2.0941: detecting terminal properties is unstructured vim-patch:8.2.0944: xxd test leaves file behind vim-patch:8.2.0962: terminal test sometimes hangs on Travis vim-patch:8.2.0971: build with tiny features fails vim-patch:8.2.0978: leaking memory in termcodes test vim-patch:8.2.0979: a couple of screendump tests fail vim-patch:8.2.0989: crash after resizing a terminal window vim-patch:8.2.1010: build failure in libvterm with debug enabled vim-patch:8.2.1013: channel tests can be a bit flaky vim-patch:8.2.1017: Appveyor output doesn't show MinGW console features vim-patch:8.2.1027: GUI: multi-byte characters do not work in a terminal vim-patch:8.2.1030: reducing size of a terminal window may cause a crash vim-patch:8.2.1031: build failure with Perl5.32 vim-patch:8.2.1057: cannot build with dynamic Lua vim-patch:8.2.1072: missing libvterm test vim-patch:8.2.1093: Python: double free when adding item to dict fails vim-patch:8.2.1094: dead code in libvterm
* version.c: update [ci skip] (#12391)Marvim the Paranoid Android2020-06-21
|
* version.c: update [ci skip] #12196Marvim the Paranoid Android2020-05-01
| | | | | | | | | | | | | | | | vim-patch:8.2.0621: after running tests asan files may remain vim-patch:8.2.0622: Haiku: GUI does not compile vim-patch:8.2.0630: "make tags" does not cover Haiku GUI file vim-patch:8.2.0631: Haiku file formatted with wrong tabstop vim-patch:8.2.0632: crash when using Haiku vim-patch:8.2.0636: :messages does not show the maintainer when $LANG is unset vim-patch:8.2.0642: Vim9: using invalid index vim-patch:8.2.0643: terminal uses brown instead of dark yellow vim-patch:8.2.0645: MS-Windows terminal: CTRL-C does not get to child job vim-patch:8.2.0651: old style benchmark test still in list of distributed files vim-patch:8.2.0654: building with Python fails vim-patch:8.2.0664: included undesired changes in Makefile vim-patch:8.2.0667: cannot install Haiku version from source vim-patch:8.2.0671: Haiku: compiler warnings
* version.c: update [ci skip] (#12084)Marvim the Paranoid Android2020-04-24
|
* version.c: update [ci skip] #11995Marvim the Paranoid Android2020-04-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.1388: char not overwritten with ambiguous width char vim-patch:8.1.1316: duplicated localtime() call vim-patch:8.1.2134: modifier keys are not always recognized vim-patch:8.1.2135: with modifyOtherKeys Alt-a does not work properly vim-patch:8.2.0373: type of term_sendkeys() is unknown vim-patch:8.2.0376: nasty callback test fails on some systems vim-patch:8.2.0377: no CI test for a big-endian system vim-patch:8.2.0383: wrong feature check causes test not to be run vim-patch:8.2.0384: Travis CI has warnings vim-patch:8.2.0390: terminal postponed scrollback test is flaky vim-patch:8.2.0391: CI test coverage dropped vim-patch:8.2.0394: Coverity complains about using NULL pointer vim-patch:8.2.0395: build fails with FEAT_EVAL but without FEAT_MENU vim-patch:8.2.0405: MSVC: build fails with some combination of features vim-patch:8.2.0410: channel test fails too often on slow Mac vim-patch:8.2.0411: Mac: breakcheck is using a value from the stone ages vim-patch:8.2.0412: MS-Windows: cannot use vimtutor from the start menu vim-patch:8.2.0417: Travis CI config can be improved vim-patch:8.2.0428: buffer name may leak vim-patch:8.2.0431: some compilers don't support using \e for Esc vim-patch:8.2.0434: MS-Windows with VTP: Normal color not working vim-patch:8.2.0435: channel contents might be freed twice vim-patch:8.2.0437: MS-Windows installer contains old stuff vim-patch:8.2.0438: terminal noblock test is very flaky on BSD vim-patch:8.2.0440: terminal noblock test is still very flaky on BSD vim-patch:8.2.0441: terminal noblock test is still failing on BSD vim-patch:8.2.0442: channel contents might be used after being freed vim-patch:8.2.0445: png and xpm files not in MS-Windows zip file vim-patch:8.2.0447: terminal scroll tests fails on some systems vim-patch:8.2.0451: Win32: double-width character displayed incorrectly vim-patch:8.2.0452: channel_parse_messages() fails when called recursively vim-patch:8.2.0455: cannot set the highlight group for a specific terminal vim-patch:8.2.0460: build failure because of wrong feature name vim-patch:8.2.0463: typos and other small problems vim-patch:8.2.0466: not parsing messages recursively breaks the govim plugin vim-patch:8.2.0468: GUI: pixel dust with some fonts and characters vim-patch:8.2.0472: terminal highlight name is set twice, leaking memory vim-patch:8.2.0475: channel out_cb test still fails sometimes on Mac vim-patch:8.2.0476: terminal nasty callback test fails sometimes vim-patch:8.2.0479: unloading shared libraries on exit has no purpose vim-patch:8.2.0481: Travis is still using trusty vim-patch:8.2.0490: Win32: VTP doesn't respect 'restorescreen' vim-patch:8.2.0497: too verbose output from the asan build in Travis vim-patch:8.2.0505: term_getty() not sufficiently tested WinBar requires `W_WINROW` macro but it is removed in 7f21665673686c653389ff4e86a2ce8e17804178. Thus, the following patch is N/A: vim-patch:8.0.1129: window toolbar missing a part of the patch https://github.com/neovim/neovim/issues/11513 makes the following patches for WinBar N/A: vim-patch:8.0.1520: cursor in wrong line when using a WinBar in Terminal window vim-patch:8.1.1263: mouse clicks in WinBar not tested vim-patch:8.1.1266: winbar test doesn't test enough vim-patch:8.1.1272: click on WinBar of other window not tested vim-patch:8.1.1456: WinBar not redrawn after scrolling one line Most `Test_termcodes.vim` tests require removed options like `ttymouse`. The following patches do not have relevant source code changes: vim-patch:8.1.1137: xterm mouse wheel escape sequence is not tested vim-patch:8.1.1142: no test for dragging the window separators with the mouse vim-patch:8.1.1155: termcodes tests can be improved vim-patch:8.1.1160: termcodes test would fail in a very big terminal vim-patch:8.1.1165: no test for mouse clicks in the terminal tabpage line vim-patch:8.1.1167: no test for closing tab by click in tabline vim-patch:8.1.1175: no test for dragging a tab and double click for new tab vim-patch:8.1.1176: test for dragging a tab is flaky vim-patch:8.1.1178: when mouse click tests fails value of 'ttytype' is unknown vim-patch:8.1.1179: no test for mouse clicks in the fold column vim-patch:8.1.1181: tests for mouse clicks are a bit flaky vim-patch:8.1.1216: mouse middle click is not tested vim-patch:8.1.1223: middle mouse click test fails without a clipboard vim-patch:8.1.1244: no tests for CTRL-mouse-click vim-patch:8.1.1247: urxvt mouse codes are not tested vim-patch:8.1.1248: no test for dec mouse vim-patch:8.1.1250: no test for netterm mouse vim-patch:8.1.1469: no test for checking the cursor style response vim-patch:8.1.1471: 'background' not correctly set for 2-digit rgb termresponse vim-patch:8.1.1472: add_termcap_entry() is not tested vim-patch:8.1.1474: 'ttybuiltin' is not tested vim-patch:8.1.2106: no tests for dragging the mouse beyond the window vim-patch:8.1.2118: termcodes test fails when $TERM is "dumb" vim-patch:8.1.2137: parsing the termresponse is not tested vim-patch:8.1.2150: no test for 'ttymouse' set from xterm version response vim-patch:8.1.2169: terminal flags are never reset vim-patch:8.1.2174: screen not recognized as supporting "sgr" mouse codes vim-patch:8.1.2306: double and triple clicks are not tested
* version.c: update [ci skip] #11721Marvim the Paranoid Android2020-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.0.1354: Shift-Insert doesn't always work in MS-Windows console vim-patch:8.0.1783: cannot use 256 colors in a MS-Windows console vim-patch:8.1.0028: prompt buffer test fails on MS-Windows vim-patch:8.1.0030: stoping Vim running in a terminal may not work vim-patch:8.1.0349: crash when wiping buffer in a callback vim-patch:8.1.0350: Vim may block on ch_sendraw() vim-patch:8.1.0442: GUI: cursor not drawn after ":redraw | sleep" vim-patch:8.1.0446: options test fails in the GUI vim-patch:8.1.0447: GUI scrollbar test fails with Athena and Motif vim-patch:8.1.0522: :terminal does not show trailing empty lines vim-patch:8.1.0649: setjmp() variables defined globally are used in one file vim-patch:8.1.0788: cannot build with tiny features vim-patch:8.1.0882: checking for FEAT_MBYTE which doesn't exist anymore vim-patch:8.1.0967: stray dependency in test Makefile vim-patch:8.1.0997: using GUI colors in vim.exe when 'termguicolors' is off vim-patch:8.1.1042: the paste test doesn't work properly in the Windows console vim-patch:8.1.1127: getwinpos() doesn't work in terminal on MS-Windows console vim-patch:8.1.1164: gettitle test is failing when server name differs vim-patch:8.1.1166: gettitle test can still fail when another Vim is running vim-patch:8.1.1185: mapping for CTRL-X is inconsistent vim-patch:8.1.1903: cannot build without the +eval feature vim-patch:8.1.2238: error in docs tags goes unnoticed vim-patch:8.1.2353: build failure on FreeBSD vim-patch:8.1.2393: using old C style comments vim-patch:8.1.2397: should not define __USE_XOPEN vim-patch:8.2.0122: readme files still mention MS-DOS vim-patch:8.2.0125: :mode no longer works for any system vim-patch:8.2.0129: MS-Windows installer doesn't use Turkish translations vim-patch:8.2.0138: memory leak when starting a job fails vim-patch:8.2.0139: MS-Windows: default for IME is inconsistent vim-patch:8.2.0140: CI does not test building doc tags vim-patch:8.2.0143: Coverity warning for possible use of NULL pointer vim-patch:8.2.0145: using #error for compilation errors should be OK now vim-patch:8.2.0153: warning shows when listing version info vim-patch:8.2.0157: Vim9 script files not in list of distributed files vim-patch:8.2.0176: generating os headers does not work for Swedish vim-patch:8.2.0181: problems parsing :term arguments vim-patch:8.2.0192: build failure without +terminal feature vim-patch:8.2.0193: still build failure without +terminal feature vim-patch:8.2.0213: configure does not recognize gcc 10.0 and later vim-patch:8.2.0217: terminal test fails on Mac vim-patch:8.2.0219: terminal test still fails on Mac vim-patch:8.2.0220: terminal test did pass on Mac vim-patch:8.2.0228: configure does not recognize gcc version on BSD vim-patch:8.2.0230: terminal popup test is flaky vim-patch:8.2.0231: silent system command may clear the screen vim-patch:8.2.0236: MS-Windows unintall doesn't delete vimtutur.bat vim-patch:8.2.0237: crash when setting 'wincolor' on finished terminal window vim-patch:8.2.0244: compiler warning in Lua interface vim-patch:8.2.0245: MSVC: error message if the auto directory already exists vim-patch:8.2.0246: MSVC: deprecation warnings with Ruby vim-patch:8.2.0247: misleading comment in NSIS installer script vim-patch:8.2.0249: MS-Windows: various warnings vim-patch:8.2.0255: VMS: missing files in build vim-patch:8.2.0259: terminal in popup test sometimes fails vim-patch:8.2.0266: terminal in popup test sometimes fails on Mac vim-patch:8.2.0273: MS-Windows uninstall may delete wrong batch file vim-patch:8.2.0278: channel test is flaky on Mac vim-patch:8.2.0297: compiler warnings for the Ruby interface vim-patch:8.2.0304: terminal test if failing on some systems vim-patch:8.2.0314: short name not set for terminal buffer vim-patch:8.2.0317: MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG build vim-patch:8.2.0330: build error with popup window but without terminal vim-patch:8.2.0333: terminal in popup test is flaky vim-patch:8.2.0337: build fails on a few systems vim-patch:8.2.0338: build failure without the channel feature vim-patch:8.2.0345: compiler warning when building without the float feature 8.2.{212,243,250} are connected. 8.2.0250 makes 8.2.0212 N/A. vim-patch:8.2.0212: missing search/substitute pattern hardly tested
* version.c: update [ci skip] #11689Marvim the Paranoid Android2020-01-14
| | | | | | vim-patch:8.0.1789: BufWinEnter does not work well for a terminal window vim-patch:8.2.0105: Vim license not easy to find on github vim-patch:8.2.0106: printf formats are not exactly right vim-patch:8.2.0107: hgignore is out of sync from gitignore
* version.c: update [ci skip] #11636Marvim the Paranoid Android2020-01-07
| | | | | | | | | | | | | | | | | | vim-patch:8.0.0902: cannot specify directory or environment for a job vim-patch:8.0.1127: Test_peek_and_get_char fails on 32 bit system vim-patch:8.1.0661: clipboard regexp might be used recursively vim-patch:8.1.0834: GUI may wait too long before dealing with messages vim-patch:8.2.0040: timers test is still flaky on Travis for Mac vim-patch:8.2.0053: windowsversion() does not always return the right value vim-patch:8.2.0055: cannot use ":gui" in vimrc with VIMDLL enabled vim-patch:8.2.0057: cannot build with small features vim-patch:8.2.0059: compiler warnings for unused variables in small build vim-patch:8.2.0060: message test only runs with one encoding vim-patch:8.2.0065: Amiga and alikes: autoopen only used on Amiga OS4 vim-patch:8.2.0080: globals using INIT4() are not in the tags file vim-patch:8.2.0081: MS-Windows also need the change to support INIT4() vim-patch:8.2.0086: build error for small version vim-patch:8.2.0094: MS-Windows: cannot build with Strawberry Perl 5.30 vim-patch:8.2.0100: macros for Ruby are too complicated
* version.c: update [ci skip] #11600Marvim the Paranoid Android2019-12-24
| | | | | | | | | | vim-patch:8.2.0001: #endif comments do reflect corresponding #ifdef vim-patch:8.2.0003: Build file dependencies are incomplete vim-patch:8.2.0009: VMS: terminal version doesn't build vim-patch:8.2.0022: click in popup window doesn't close it in the GUI vim-patch:8.2.0029: MS-Windows: crash with empty job command vim-patch:8.2.0031: MS-Windows: test for empty job fails vim-patch:8.2.0032: MS-Windows: test for blank job fails vim-patch:8.2.0034: missing check for out of memory
* version.c: update [ci skip] #11415Marvim the Paranoid Android2019-12-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | vim-patch:8.1.0121: crash when using ballooneval related to 'vartabstop' vim-patch:8.1.0132: lua tests are old style vim-patch:8.1.0134: Lua interface does not support funcref vim-patch:8.1.0758: font number is always one instead of the actual vim-patch:8.1.0808: MS-Windows: build error with GUI vim-patch:8.1.1767: FEAT_SESSION defined separately vim-patch:8.1.1958: old style comments taking up space vim-patch:8.1.2327: cannot build with Hangul input vim-patch:8.1.2328: a few hangul input pieces remain vim-patch:8.1.2352: CI doesn't cover FreeBSD vim-patch:8.1.2354: Cirrus CI runs on another repository vim-patch:8.1.2359: cannot build without FEAT_FLOAT vim-patch:8.1.2370: build problems on VMS vim-patch:8.1.2372: VMS: failing realloc leaks memory vim-patch:8.1.2374: unused parts of libvterm are included vim-patch:8.1.2376: preprocessor indents are incorrect vim-patch:8.1.2383: using old C style comments vim-patch:8.1.2404: channel test fails under valgrind vim-patch:8.1.2407: proto files, dependencies and build instructions outdated vim-patch:8.1.2409: creating the distribution doesn't work as documented vim-patch:8.1.2410: MS-Windows: test_iminsert fails without IME support vim-patch:8.1.2413: cannot update ex_cmdidxs.h on MS-Windows vim-patch:8.1.2414: MS-Windows: properties dialog box shows wrong character vim-patch:8.1.2417: MinGW/Cygwin build does not clean up all files vim-patch:8.1.2423: MS-Windows properties shows version as "8, 1, 0"