- Mar 25, 2018
-
-
Bram Moolenaar authored
Problem: Terminal API tests still fail. Solution: Explicitly set 'title' in the terminal job. (Ozaki Kiichi, closes #2750)
-
Bram Moolenaar authored
Problem: Terminal API tests fail. Solution: Explicitly set 'title'.
-
Bram Moolenaar authored
Problem: Running Vim in terminal fails with two windows. Solution: Pass the number of rows to RunVimInTerminal().
-
Bram Moolenaar authored
Problem: Job in terminal can't communicate with Vim. Solution: Add the terminal API.
-
Bram Moolenaar authored
Problem: Test_cwd() is flaky. Solution: Add to list of flaky tests.
-
Bram Moolenaar authored
Problem: Libvterm code lags behind master. Solution: Sync to head, solve merge problems.
-
- Mar 24, 2018
-
-
Bram Moolenaar authored
Problem: Popup test fails depending on environment variable. Solution: Reset $COLORFGBG when running Vim in a terminal. (closes #2693)
-
Bram Moolenaar authored
Problem: No test for term_dumpdiff() options argument. Solution: Add a test.
-
Bram Moolenaar authored
Problem: No test for term_dumpload() and term_dumpdiff(). Solution: Add tests.
-
Bram Moolenaar authored
Problem: Undefining _POSIX_THREADS causes problems with Python 3. (Micah Bucy, closes #2748) Solution: Remove the lines.
-
Bram Moolenaar authored
Problem: The ex_vimgrep() function is too long. Solution: Split it in smaller functions. (Yegappan Lakshmanan)
-
- Mar 23, 2018
-
-
Bram Moolenaar authored
Problem: A TextChanged autocmd triggers when it is defined after creating a buffer. Solution: Set b_last_changedtick when opening a buffer. (Hirohito Highlight, closes #2742)
-
Bram Moolenaar authored
Problem: In a terminal dump NUL and space considered are different, although they are displayed the same. Solution: When encountering NUL handle it like space.
-
Bram Moolenaar authored
Problem: Testing with Vim running in terminal is a bit flaky. Solution: Delete any .swp file so that later tests don't fail.
-
- Mar 22, 2018
-
-
Bram Moolenaar authored
Problem: Trimming white space is not that easy. Solution: Add the trim() function. (Bukn, closes #1280)
-
Bram Moolenaar authored
Problem: Mac: getpagesize() is deprecated. Solution: Use sysconf() instead. (Ozaki Kiichi, closes #2741)
-
Bram Moolenaar authored
Problem: Channel log doesn't mention exiting. Solution: Add a ch_log() call in getout().
-
Bram Moolenaar authored
Problem: Compiler warning for visibility attribute not supported on MinGW builds. Solution: Don't add the attribute when we don't expect it to work. (Christian Brabandt)
-
- Mar 21, 2018
-
-
Bram Moolenaar authored
Problem: Compiler warning for possible loss of data. Solution: Use size_t instead of int. (Christian Brabandt)
-
- Mar 20, 2018
-
-
Bram Moolenaar authored
Problem: Test_quotestar is flaky when run in GTK GUI. Solution: Do not call lose_selection when invoked from selection_clear_event().
-
Bram Moolenaar authored
Problem: Options for term_dumpdiff() and term_dumpload() not implemented yet. Solution: Implement the relevant options.
-
Bram Moolenaar authored
Problem: Terminal kill tests are flaky. Solution: Instead of running Vim in a terminal, run it as a normal command.
-
Bram Moolenaar authored
Problem: Possible NULL pointer dereferencey. (Coverity) Solution: Reverse the check for a NULL pointer.
-
Bram Moolenaar authored
Problem: Using invalid default value for highlight attribute. Solution: Use zero instead of -1.
-
Bram Moolenaar authored
Problem: Reading spell file has no good EOF detection. Solution: Check for EOF at every character read for a length field.
-
Bram Moolenaar authored
Problem: Win32 GUI: crash when winpty is not installed and trying to use :shell in a terminal window. Solution: Check for NULL return form term_start(). (Yasuhiro Matsumoto, closes #2727)
-
Bram Moolenaar authored
Problem: Color Grey50, used for ToolbarLine, is missing in the compiled-in table. Solution: Add the color to the list. (Kazunobu Kuriyama)
-
- Mar 19, 2018
-
-
Bram Moolenaar authored
Problem: Win32: :shell command in the GUI crashes. Solution: Handle the situation that "cmd" is NULL. (Yasuhiro Matsumoto, closes #2721)
-
- Mar 18, 2018
-
-
Bram Moolenaar authored
Problem: Win32: shell commands in the GUI open a new console. Solution: Use a terminal window for interactive use when 'guioptions' contains "!".
-
Bram Moolenaar authored
Problem: term_dumpload() does not use the right colors. Solution: Initialize colors when not using create_vterm().
-
Bram Moolenaar authored
-
- Mar 17, 2018
-
-
Bram Moolenaar authored
Problem: "make tags" doesn't include libvterm. Solution: Add the libvterm sources to the tags command.
-
Bram Moolenaar authored
Problem: Warning for unused variable in tiny build. (Tony Mechelynck) Solution: Move declaration to inner block.
-
- Mar 16, 2018
-
-
Bram Moolenaar authored
Problem: Need to close terminal after shell stopped. Solution: Make :terminal without argument close the window by default.
-
Bram Moolenaar authored
Problem: CTRL-W in system terminal does not go to job. Solution: Do not use CTRL-W as a terminal command in a system terminal.
-
Bram Moolenaar authored
Problem: Cannot build without GUI. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Shell commands in the GUI use a dumb terminal. Solution: Add the "!" flag to 'guioptions' to execute system commands in a special terminal window. Only for Unix now.
-
- Mar 14, 2018
-
-
Bram Moolenaar authored
Problem: Win32: directx not enabled by default. Solution: Change Makefile to enable directx by default. (Ken Takata)
-
Bram Moolenaar authored
Problem: --clean loads user settings from .gvimrc. Solution: Behave like "-U NONE" was used. (Ken Takata)
-
Bram Moolenaar authored
Problem: Singular/plural variants not translated. Solution: Add NGETTEXT argument to xgettext. (Sergey Alyoshin)
-