@@ -43,32 +43,19 @@ Prompt buffer:
4343- delay next prompt until plugin gives OK?
4444
4545Terminal debugger:
46- - Using terminal window: after "cont" in gdb window CTRL-C interrupts, but
47- after :Continue it does not. Mode of UI is changed? :Stop does work.
48- - patch from Christian to handle changing 'background'
49- and a patch to show breakpoint nr in sign. (June 14)
5046- Make prompt-buffer variant work better.
47+ - When only gdb window exists, on "quit" edit another buffer.
5148- Termdebug does not work when Vim was build with mzscheme: gdb hangs just
5249 after "run". Everything else works, including communication channel. Not
5350 initializing mzscheme avoid the problem, thus it's not some #ifdef.
54- - Show breakpoint number in the sign? (Uri Moszkowicz, 2018 Jun 13, #3007)
55- - Allow for users to create their own gdb mappings. Perhaps by making the gdb
56- buffer global? (Uri Moszkowicz, #3012) Or with a function to send a command
57- to gdb.
5851
5952Terminal emulator window:
6053- With a vertical split only one window is updated. (Linwei, 2018 Jun 2,
6154 #2977)
62- - When typing : at the more prompt, instead of entering a new Vim command, the
63- : is inserted in the terminal window. Should skip terminal_loop here.
64- ()
6555- When pasting should call vterm_keyboard_start_paste(), e.g. when using
6656 K_MIDDLEMOUSE, calling insert_reg().
6757- Users expect parsing the :term argument like a shell does, also support
6858 single quotes. E.g. with: :term grep 'alice says "hello"' (#1999)
69- - When running a shell in a terminal to run Vim tests, CTRL-W : the command
70- line keeps getting cleard. Doing the same in another window is OK. (Jason
71- Franklin, 2018 Jun 17)
7259- How to access selection in Terminal running a shell? (damnskippy, 2018 May
7360 27, #29620 When terminal doesn't use the mouse, use modeless selection.
7461- Win32: Redirecting input does not work, half of Test_terminal_redir_file()
@@ -102,26 +89,11 @@ Errors found with random data:
10289More warnings from static analysis:
10390https://lgtm.com/projects/g/vim/vim/alerts/?mode=list
10491
105- Patch to make "is" and "as" work better. (Jason Franklin, 2018 May 19)
106-
107- Patch to add tests for user and language completion. (Dominique Pelle, 2018
108- Jun 2, #2978) typo wk -> we
109- Patch to support user name completion on MS-Windows. (Yasuhiro Matsumoto, 2012
110- Aug 16)
111-
112- Patch to add tests for libcall() and libcallnr(). (Dominique Pelle, #2982)
113-
114- Patch to fix that v:shell_error is always zero when using terminal for shell
115- command. (Ichizok, 2018 Jun 8, #2994)
116-
117- Patch to make test for terminal out&error more reliable. (Ichizok, 2018 Jun 8,
118- #2991)
119-
12092Patch to fix duplicate entry in tagfiles() and add a test. (Dominique Pelle,
12193#2979)
12294
12395Pasting foo} causes Vim to behave weird. (John Little, 2018 Jun 17)
124- Related to bracketed paste.
96+ Related to bracketed paste. I cannot reproduce it.
12597
12698Using ":file" in quickfix window during an autocommand doesn't work.
12799(Jason Franklin, 2018 May 23) Allow for using it when there is no argument.
@@ -134,6 +106,15 @@ Patch for xterm and vt320 builtin termcap. (Kouichi Iwamoto, 2018 May 31,
134106Patch to add more testing for :cd command. (Dominique Pelle, 2018 May 30,
135107#2972)
136108
109+ Whenever the file name is "~" then expand('%:p') returns $HOME. (Aidan
110+ Shafran, 2018 Jun 23, #3072)
111+
112+ Patch to set w_curswant when setting the cursor in language interfaces.
113+ (David Hotham, 2018 Jun 22, #3060)
114+
115+ Patch to make CTRL-W <CR> work properly in a quickfix window. (Jason Franklin,
116+ 2018 May 30)
117+
137118Patch to make mode() return something different for Normal mode when coming
138119from Insert mode with CTRL-O . (#3000)
139120
@@ -158,6 +139,13 @@ Tests failing for "make testgui" with GTK:
158139- Test_setbufvar_options()
159140- Test_exit_callback_interval()
160141
142+ Patch to stack and pop the window title and icon. (IWAMOTO Kouichi, 2018 Jun
143+ 22, #3059)
144+ 8 For xterm need to open a connection to the X server to get the window
145+ title, which can be slow. Can also get the title with "<Esc> [21t", no
146+ need to use X11 calls. This returns "<Esc> ]l{title}<Esc> \".
147+ Using title stack probably works better.
148+
161149Make balloon_show() work outside of 'balloonexpr' ? Users expect it to work:
162150#2948. (related to #1512?)
163151On Win32 it stops showing, because showState is already ShS_SHOWING.
@@ -198,9 +186,6 @@ deleting autocmds, not when adding them.
198186Quickfix window height is not kept with a vertical split. (Lifepillar, 2018
199187Jun 10, #2998)
200188
201- Patch for variable tabstops. On github (Christian Brabandt, 2014 May 15)
202- Update 2018 March 12, #2711
203-
204189Improve the installer for MS-Windows. There are a few alternatives:
205190- Add silent install option. (Shane Lee, #751)
206191- Installer from Cream (Steve Hall).
@@ -321,6 +306,8 @@ highlighted. (van-de-bugger, 2018 Jan 23, #2576)
321306Patch to parse ":line" in tags file and use it for search. (Daniel Hahler,
322307#2546) Fixes #1057. Missing a test.
323308
309+ ":file" does not show anything when 'shortmess' contains 'F'. (#3070)
310+
324311Patch to add winlayout() function. (Yegappan Lakshmanan, 2018 Jan 4)
325312
326313No profile information for function that executes ":quit". (Daniel Hahler,
@@ -463,6 +450,10 @@ The ++ options for the :edit command are also useful on the Vim command line.
463450When recovering a file, put the swap file name in b:recovered_swapfile. Then
464451a command can delete it.
465452
453+ When a swap file exists, is not for a running process, is from the same
454+ machine and recovering results in the same text, we could silently delete it.
455+ #1237
456+
466457Overlong utf-8 sequence is displayed wrong. (Harm te Hennepe, 2017 Sep 14,
467458#2089) Patch with possible solution by Björn Linse.
468459
@@ -3430,9 +3421,6 @@ Macintosh:
343034217 X11: Some people prefer to use CLIPBOARD instead of PRIMARY for the normal
34313422 selection. Add an "xclipboard" argument to the 'clipboard' option? (Mark
34323423 Waggoner)
3433- 8 For xterm need to open a connection to the X server to get the window
3434- title, which can be slow. Can also get the title with "<Esc> [21t", no
3435- need to use X11 calls. This returns "<Esc> ]l{title}<Esc> \".
343634246 When the xterm reports the number of colors, a redraw occurs. This is
34373425 annoying on a slow connection. Wait for the xterm to report the number of
34383426 colors before drawing the screen. With a timeout.
0 commit comments