Skip to content

Commit

Permalink
vim: Import v8.2.4726
Browse files Browse the repository at this point in the history
* 8.2.4726: cannot use expand() to get the script name
* 8.2.4725: unused variable in tiny build
* 8.2.4724: current instance of last search pattern not easily spotted
* 8.2.4723: the ModeChanged autocmd event is inefficient
* 8.2.4722: ending recording with mapping records too much
* 8.2.4721: cooklang files are not recognized
* 8.2.4720: ABB Rapid files are not recognized properly
* 8.2.0003: Build file dependencies are incomplete
* 8.2.4719: ">" marker sometimes not displayed in the jumplist
* 8.2.4718: @@@ in the last line sometimes drawn in the wrong place
* 8.2.4717: for TextYankPost v:event does not contain all information
* 8.2.4716: memory allocation failure not tested when defining a function
  • Loading branch information
chrisbra committed Apr 9, 2022
1 parent dce69e8 commit e184ecd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gitlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* [8.2.4715](https://github.com/vim/vim/commit/5e1792270a072a96157e5d5e1d6a97414e26d0bf): Vagrantfile not recognized\n* [Update runtime files](https://github.com/vim/vim/commit/cbaff5e06ec525d31dc44093125c42029e01d508)\n* [8.2.4714](https://github.com/vim/vim/commit/a8034a4886843fbf10bd59a6f55ec723da515b8e): using g:filetype\_dat and g:filetype\_src not tested\n* [8.2.4713](https://github.com/vim/vim/commit/0937182d49fa8db50cec42785f22f1031760a0bd): plugins cannot track text scrolling\n* [8.2.4712](https://github.com/vim/vim/commit/18ee0f603ebd3c091f6d2ab88e652fda32821048): only get profiling information after exiting\n* [8.2.4711](https://github.com/vim/vim/commit/3a56b6d405fc0f1ca928b77382f97d0c552bea64): when 'insermode' is set :edit from \<Cmd> mapping misbehaves
* [8.2.4726](https://github.com/vim/vim/commit/6013d0045dec7ca7c0068fbe186c42d754a7368b): cannot use expand() to get the script name\n* [8.2.4725](https://github.com/vim/vim/commit/2ce97ae6aaec7007cca16a446d73161b82f2ba69): unused variable in tiny build\n* [8.2.4724](https://github.com/vim/vim/commit/a43993897aa372159f682df37562f159994dc85c): current instance of last search pattern not easily spotted\n* [8.2.4723](https://github.com/vim/vim/commit/2bf52dd065495cbf28e28792f2c2d50d44546d9f): the ModeChanged autocmd event is inefficient\n* [8.2.4722](https://github.com/vim/vim/commit/81b46a6ccd818609e1ca8cd410e26a58428c30ba): ending recording with mapping records too much\n* [8.2.4721](https://github.com/vim/vim/commit/36951ed1dab2b2e816dc8959c72b5732f36d9e3b): cooklang files are not recognized\n* [8.2.4720](https://github.com/vim/vim/commit/b09c320039ad49e62d2e2d7f14ba47ee3ca0706a): ABB Rapid files are not recognized properly\n* [8.2.0003](https://github.com/vim/vim/commit/0bbf09ca41382302493e5db51b01d2fbdc778586): Build file dependencies are incomplete\n* [8.2.4719](https://github.com/vim/vim/commit/a0f659c76e22108880f857b8961422afc5ed8f5d): ">" marker sometimes not displayed in the jumplist\n* [8.2.4718](https://github.com/vim/vim/commit/cee9c844f27bceaba90362a3fa27a04d4d06c0fd): @@@ in the last line sometimes drawn in the wrong place\n* [8.2.4717](https://github.com/vim/vim/commit/a016eeba7a5777ba1f2ec2dbcda7c96823bf9ab1): for TextYankPost v:event does not contain all information\n* [8.2.4716](https://github.com/vim/vim/commit/7c7e19cf50d76568e2637ad66b095044a41c6a82): memory allocation failure not tested when defining a function
2 changes: 1 addition & 1 deletion vim
Submodule vim updated 54 files
+71 −2 runtime/autoload/dist/ft.vim
+3 −0 runtime/doc/autocmd.txt
+7 −1 runtime/doc/cmdline.txt
+2 −0 runtime/doc/filetype.txt
+3 −0 runtime/doc/motion.txt
+1 −0 runtime/doc/options.txt
+2 −0 runtime/doc/syntax.txt
+15 −22 runtime/filetype.vim
+14 −0 src/alloc.c
+1 −0 src/alloc.h
+1 −11 src/autocmd.c
+6 −3 src/drawscreen.c
+3 −3 src/edit.c
+2 −0 src/errors.h
+23 −7 src/ex_docmd.c
+2 −2 src/ex_getln.c
+9 −1 src/getchar.c
+1 −0 src/highlight.c
+4 −4 src/insexpand.c
+4 −0 src/mark.c
+16 −0 src/match.c
+60 −57 src/misc1.c
+23 −8 src/normal.c
+1 −1 src/optiondefs.h
+1 −0 src/proto/alloc.pro
+2 −1 src/proto/misc1.pro
+9 −0 src/register.c
+3 −3 src/screen.c
+28 −1 src/scriptfile.c
+1 −0 src/structs.h
+1 −1 src/terminal.c
+0 −1 src/testdir/Make_all.mak
+10 −0 src/testdir/dumps/Test_display_lastline_1.dump
+10 −0 src/testdir/dumps/Test_display_lastline_2.dump
+10 −0 src/testdir/dumps/Test_display_lastline_3.dump
+10 −0 src/testdir/dumps/Test_display_lastline_4.dump
+9 −0 src/testdir/dumps/Test_hlsearch_cursearch_multiple_line.dump
+9 −0 src/testdir/dumps/Test_hlsearch_cursearch_single_line_1.dump
+9 −0 src/testdir/dumps/Test_hlsearch_cursearch_single_line_2.dump
+9 −0 src/testdir/dumps/Test_hlsearch_cursearch_single_line_3.dump
+0 −1 src/testdir/test_alot.vim
+38 −16 src/testdir/test_autocmd.vim
+26 −0 src/testdir/test_display.vim
+50 −0 src/testdir/test_expand.vim
+189 −3 src/testdir/test_filetype.vim
+39 −0 src/testdir/test_jumplist.vim
+0 −15 src/testdir/test_jumps.vim
+21 −0 src/testdir/test_registers.vim
+28 −0 src/testdir/test_search.vim
+30 −0 src/testdir/test_user_func.vim
+16 −0 src/testdir/test_vim9_func.vim
+1 −1 src/userfunc.c
+22 −0 src/version.c
+4 −2 src/vim.h

0 comments on commit e184ecd

Please sign in to comment.