-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 9.0.1927: patch 1916 (fixed terminal size) not optimal * 9.0.1926: Vim9: not enough info in error message * 9.0.1925: if_python: still undefined behaviour with function pointer * 9.0.1924: LSP server message still wrongly handled (after 9.0.1922) * 9.0.1923: curswant wrong on click with 've' and 'wrap' set * runtime(doc): format jumplist examples more consistently (#13137)
- 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 @@ | ||
* [9.0.1922](https://github.com/vim/vim/commit/78c5a5abc657f0173551157547213d8bbb033fd4): LSP server request message is misinterpreted as a response message\n* [9.0.1921](https://github.com/vim/vim/commit/87018255e3ad0f4dfa03e20318836d24af721caf): not possible to use the jumplist like a stack\n* [9.0.1920](https://github.com/vim/vim/commit/98e68c07ce229148c994a42ead9f010b0d0a1be4): Vim9: cannot write public var in nested object\n* [9.0.1919](https://github.com/vim/vim/commit/03cd697d635f1b0e7ffe21cf8244a8fb755f2ddb): Wrong curswant when clicking on empty line or with vsplits\n* [9.0.1918](https://github.com/vim/vim/commit/5790a54166793554d16f6a85d8824632860b8b37): No filetype detection for Authzed filetypes\n* [9.0.1917](https://github.com/vim/vim/commit/d606fccf6fd716bda43a8e1d11d898f438d28b82): undefined behaviour with python function pointer | ||
* [9.0.1927](https://github.com/vim/vim/commit/ceee7a808ce82b0c6bd84e0b6fc1dfb0475c99aa): patch 1916 (fixed terminal size) not optimal\n* [9.0.1926](https://github.com/vim/vim/commit/696270bcae0c14029030f14a3f3ca2763a2b39de): Vim9: not enough info in error message\n* [9.0.1925](https://github.com/vim/vim/commit/02c51b1dd8e8b96e969ad7e408536fa208d90ac8): if\_python: still undefined behaviour with function pointer\n* [9.0.1924](https://github.com/vim/vim/commit/1926ae41845c3b6e2045b29225365c8a2e4eb1da): LSP server message still wrongly handled (after 9.0.1922)\n* [9.0.1923](https://github.com/vim/vim/commit/db54e989b5cff3cc6442dfc500e3962cc1c0b6d0): curswant wrong on click with 've' and 'wrap' set\n* [runtime(doc): format jumplist examples more consistently (#13137)](https://github.com/vim/vim/commit/a7aba6ca5033a85839d997d29d5ca88a1f2acf8f) |
Submodule vim
updated
19 files
+24 −25 | runtime/doc/motion.txt | |
+9 −10 | src/channel.c | |
+13 −4 | src/drawline.c | |
+1 −1 | src/errors.h | |
+1 −1 | src/eval.c | |
+132 −99 | src/if_py_both.h | |
+5 −5 | src/if_python3.c | |
+4 −0 | src/libvterm/include/vterm.h | |
+4 −4 | src/libvterm/src/screen.c | |
+8 −3 | src/mouse.c | |
+1 −1 | src/optionstr.c | |
+2 −2 | src/screen.c | |
+4 −4 | src/terminal.c | |
+21 −0 | src/testdir/test_channel.vim | |
+47 −19 | src/testdir/test_channel_lsp.py | |
+5 −5 | src/testdir/test_vim9_class.vim | |
+55 −0 | src/testdir/test_virtualedit.vim | |
+10 −0 | src/version.c | |
+2 −2 | src/vim9compile.c |