diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-05-16 12:23:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-16 03:23:36 -0700 |
commit | 7adecbcd29e17b71bf43e50a444724da184c04a7 (patch) | |
tree | e578cdc041755de98eb406c7e25e38a0e65bb4c0 | |
parent | cd998f8804a33bd93574e2830d03f800bbc162ba (diff) | |
download | rneovim-7adecbcd29e17b71bf43e50a444724da184c04a7.tar.gz rneovim-7adecbcd29e17b71bf43e50a444724da184c04a7.tar.bz2 rneovim-7adecbcd29e17b71bf43e50a444724da184c04a7.zip |
fix(version.c): mark N/A vim patches #18587
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()
-rw-r--r-- | src/nvim/version.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 2369681dca..8d1173de05 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -215,7 +215,7 @@ static const int included_patches[] = { 1709, 1708, 1707, - // 1706, + 1706, 1705, 1704, 1703, @@ -305,14 +305,14 @@ static const int included_patches[] = { 1619, 1618, 1617, - // 1616, + 1616, 1615, 1614, 1613, 1612, 1611, 1610, - // 1609, + 1609, 1608, 1607, 1606, @@ -359,7 +359,7 @@ static const int included_patches[] = { 1565, 1564, 1563, - // 1562, + 1562, 1561, 1560, 1559, @@ -554,7 +554,7 @@ static const int included_patches[] = { 1370, 1369, 1368, - // 1367, + 1367, 1366, 1365, 1364, @@ -582,11 +582,11 @@ static const int included_patches[] = { 1342, 1341, 1340, - // 1339, + 1339, 1338, 1337, 1336, - // 1335, + 1335, 1334, 1333, 1332, @@ -614,7 +614,7 @@ static const int included_patches[] = { 1310, 1309, 1308, - // 1307, + 1307, 1306, 1305, 1304, @@ -802,7 +802,7 @@ static const int included_patches[] = { 1122, 1121, 1120, - // 1119, + 1119, 1118, 1117, 1116, |