-
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.0.0938: scrolling in terminal window is inefficient * 8.0.0937: user highlight groups not adjusted for terminal * 8.0.0936: mode() returns wrong value for a terminal window * 8.0.0935: cannot recognize a terminal buffer in :ls output * 8.0.0934: change to struts.h missing in patch * 8.0.0933: terminal test tries to start GUI when it's not possible * 8.0.0932: terminal may not use right characters for BS and Enter * 8.0.0931: getwininfo() does not indicate a terminal window * 8.0.0930: terminal buffers are stored in the viminfo file * 8.0.0929: :term without argument does not work * 8.0.0928: MS-Windows: passing arglist to job has escaping problems * 8.0.0927: if a terminal job sends a blank title "running" is not shown * 8.0.0926: when job in terminal window ends topline is wrong * 8.0.0925: MS-Windows GUI: channel I/O not handled right away * 8.0.0924: terminal window not updated after using term_sendkeys() * 8.0.0923: crash in GUI when terminal job exits * 8.0.0922: quickfix list always added after current one
- 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.0.0921](https://github.com/vim/vim/releases/tag/v8.0.0921): terminal window cursor shape not supported in the GUI\n* [8.0.0920](https://github.com/vim/vim/releases/tag/v8.0.0920): cursor wrong after switching altscreen in terminal\n* [8.0.0919](https://github.com/vim/vim/releases/tag/v8.0.0919): cursor color isn't set on startup\n* [8.0.0918](https://github.com/vim/vim/releases/tag/v8.0.0918): cannot get terminal window cursor shape or attributes\n* [8.0.0917](https://github.com/vim/vim/releases/tag/v8.0.0917): MS-Windows:CTRL-C handling in terminal window is wrong\n* [8.0.0916](https://github.com/vim/vim/releases/tag/v8.0.0916): cannot specify properties of window for terminal open\n* [8.0.0915](https://github.com/vim/vim/releases/tag/v8.0.0915): wrong initialisation of global\n* [8.0.0914](https://github.com/vim/vim/releases/tag/v8.0.0914): highlight attributes are always combined\n* [8.0.0913](https://github.com/vim/vim/releases/tag/v8.0.0913): MS-Windows: CTRL-C kills shell in terminal window\n* [8.0.0912](https://github.com/vim/vim/releases/tag/v8.0.0912): cannot run a job in a hidden terminal | ||
* [8.0.0938](https://github.com/vim/vim/releases/tag/v8.0.0938): scrolling in terminal window is inefficient\n* [8.0.0937](https://github.com/vim/vim/releases/tag/v8.0.0937): user highlight groups not adjusted for terminal\n* [8.0.0936](https://github.com/vim/vim/releases/tag/v8.0.0936): mode() returns wrong value for a terminal window\n* [8.0.0935](https://github.com/vim/vim/releases/tag/v8.0.0935): cannot recognize a terminal buffer in :ls output\n* [8.0.0934](https://github.com/vim/vim/releases/tag/v8.0.0934): change to struts.h missing in patch\n* [8.0.0933](https://github.com/vim/vim/releases/tag/v8.0.0933): terminal test tries to start GUI when it's not possible\n* [8.0.0932](https://github.com/vim/vim/releases/tag/v8.0.0932): terminal may not use right characters for BS and Enter\n* [8.0.0931](https://github.com/vim/vim/releases/tag/v8.0.0931): getwininfo() does not indicate a terminal window\n* [8.0.0930](https://github.com/vim/vim/releases/tag/v8.0.0930): terminal buffers are stored in the viminfo file\n* [8.0.0929](https://github.com/vim/vim/releases/tag/v8.0.0929): :term without argument does not work\n* [8.0.0928](https://github.com/vim/vim/releases/tag/v8.0.0928): MS-Windows: passing arglist to job has escaping problems\n* [8.0.0927](https://github.com/vim/vim/releases/tag/v8.0.0927): if a terminal job sends a blank title "running" is not shown\n* [8.0.0926](https://github.com/vim/vim/releases/tag/v8.0.0926): when job in terminal window ends topline is wrong\n* [8.0.0925](https://github.com/vim/vim/releases/tag/v8.0.0925): MS-Windows GUI: channel I/O not handled right away\n* [8.0.0924](https://github.com/vim/vim/releases/tag/v8.0.0924): terminal window not updated after using term_sendkeys()\n* [8.0.0923](https://github.com/vim/vim/releases/tag/v8.0.0923): crash in GUI when terminal job exits\n* [8.0.0922](https://github.com/vim/vim/releases/tag/v8.0.0922): quickfix list always added after current one |
Submodule vim
updated
22 files
+6 −1 | runtime/doc/eval.txt | |
+22 −3 | src/buffer.c | |
+108 −29 | src/channel.c | |
+7 −0 | src/evalfunc.c | |
+3 −0 | src/globals.h | |
+10 −6 | src/gui_w32.c | |
+17 −3 | src/mark.c | |
+54 −30 | src/os_unix.c | |
+1 −0 | src/proto/channel.pro | |
+1 −0 | src/proto/os_unix.pro | |
+39 −28 | src/quickfix.c | |
+5 −0 | src/screen.c | |
+8 −0 | src/structs.h | |
+95 −59 | src/syntax.c | |
+150 −72 | src/terminal.c | |
+4 −0 | src/testdir/shared.vim | |
+65 −27 | src/testdir/test_channel.vim | |
+2 −1 | src/testdir/test_gui.vim | |
+2 −1 | src/testdir/test_gui_init.vim | |
+92 −6 | src/testdir/test_quickfix.vim | |
+32 −0 | src/testdir/test_terminal.vim | |
+34 −0 | src/version.c |