-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 8.2.0683: Vim9: parsing type does not always work * 8.2.0682: Vim9: parsing function argument type can get stuck * 8.2.0681: pattern for 'hlsearch' highlighting may leak * 8.2.0680: PTYGROUP and PTYMODE are unused * 8.2.0679: Vim9: incomplete support for closures * 8.2.0678: rare crash for popup menu
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* [8.2.0677](https://github.com/vim/vim/commit/c8cd2b34d1027c93fbca90f3cdc8123fe22dfa25): Vim9: no support for closures\n* [8.2.0676](https://github.com/vim/vim/commit/37addecc422c3b62a622b371246dc4ef0a2fa157): pattern in list of distributed files does not match\n* [Update runtime files](https://github.com/vim/vim/commit/7ceefb35c8110d87ced884275ddbe63d024a014f)\n* [8.2.0675](https://github.com/vim/vim/commit/b84a381c75e50ca0e0a24cc3e152d0c70f8c2c7d): Vim9: no support for closures\n* [8.2.0674](https://github.com/vim/vim/commit/11abd095210fc84e5dcee87b9baed86061caefe4): some source files are too big\n* [8.2.0673](https://github.com/vim/vim/commit/4cfde1d273ec5fca68a983805af48ea37d3d94e5): cannot build Haiku in shadow directory\n* [8.2.0672](https://github.com/vim/vim/commit/6ab0953fefe31fef91e40752a675ceb60fc2fe03): heredoc in scripts does not accept lower case marker | ||
* [8.2.0683](https://github.com/vim/vim/commit/5adc55cb746893c6ddf7865ff654582902dee2e3): Vim9: parsing type does not always work\n* [8.2.0682](https://github.com/vim/vim/commit/1c0d44f8efae36c079cb8be395785827aa0b2737): Vim9: parsing function argument type can get stuck\n* [8.2.0681](https://github.com/vim/vim/commit/0b6849e9e302286e906d97e4ba017dd66561a9ce): pattern for 'hlsearch' highlighting may leak\n* [8.2.0680](https://github.com/vim/vim/commit/01f731e97c92bee05927f5008b7cd34ce188632b): PTYGROUP and PTYMODE are unused\n* [8.2.0679](https://github.com/vim/vim/commit/bf67ea1af05cbb30cd8f0b665fb567c0dca79796): Vim9: incomplete support for closures\n* [8.2.0678](https://github.com/vim/vim/commit/d58a662f44dc11475f4cf5922a948635da934cc4): rare crash for popup menu |
Submodule vim
updated
13 files
+0 −97 | src/auto/configure | |
+0 −6 | src/config.h.in | |
+0 −71 | src/configure.ac | |
+6 −3 | src/popupmenu.c | |
+2 −1 | src/proto/vim9execute.pro | |
+1 −0 | src/screen.c | |
+1 −3 | src/structs.h | |
+57 −0 | src/testdir/test_vim9_func.vim | |
+5 −0 | src/userfunc.c | |
+12 −0 | src/version.c | |
+32 −1 | src/vim9.h | |
+35 −4 | src/vim9compile.c | |
+209 −58 | src/vim9execute.c |