- Apr 04, 2018
-
-
Bram Moolenaar authored
Problem: Warnings from 64 bit compiler. Solution: Add type casts. (Mike Williams)
-
Bram Moolenaar authored
Problem: The terminal API "drop" command doesn't support options. Solution: Implement the options.
-
Bram Moolenaar authored
Problem: Scroll events not recognized for some xterm emulators. Solution: Recognize mouse codes 0x40 and 0x41 as scroll events.
-
- Apr 03, 2018
-
-
Bram Moolenaar authored
Problem: Capitalize argument not available in long form. Solution: Recognize -capitalize. Update man page.
-
Bram Moolenaar authored
Problem: Crash when reading a channel. Solution: Clear the write flag before writing. (idea by Shinya Ohyanagi, closes #2769).
-
Bram Moolenaar authored
Problem: No option to have xxd produce upper case variable names. Solution: Add the -C argument. (Matt Panaro closes #2772)
-
- Mar 30, 2018
-
-
Bram Moolenaar authored
-
- Mar 29, 2018
-
-
Bram Moolenaar authored
Problem: Outdated gdb message in terminal debugger unclear. Solution: Specifically mention the required gdb version. Avoid getting stuck on pagination.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Warnings for conversion of void to function pointer. Solution: Use a temp variable that is a function pointer.
-
Bram Moolenaar authored
Problem: Screen dump is made too soon. Solution: Wait until the ruler is displayed. (Ozaki Kiichi, closes #2755)
-
Bram Moolenaar authored
Problem: term_dumpwrite() does not output composing characters. Solution: Use the cell index.
-
Bram Moolenaar authored
Problem: Cannot filter :ls output for terminal buffers. Solution: Add flags for terminal buffers. (Marcin Szamotulski, closes #2751)
-
Bram Moolenaar authored
Problem: Too many #ifdefs. Solution: Graduate FEAT_LISTCMDS, no reason to leave out buffer commands.
-
Bram Moolenaar authored
Problem: No completion for argument list commands. Solution: Add arglist completion. (Yegappan Lakshmanan, closes #2706)
-
- Mar 27, 2018
-
-
Bram Moolenaar authored
Problem: Resource fork tool doesn't work on Python 3. Solution: Use "print()" instead of "print". (Marius Gedminas)
-
- Mar 26, 2018
-
-
Bram Moolenaar authored
Problem: Terminal API may call a function not meant to be called by this API. Solution: Require the function to start with Tapi_.
-
Bram Moolenaar authored
Problem: MS-Windows: executable contains unreferenced functions and data. Solution: Add /opt:ref to the compiler command. (Ken Takata)
-
- Mar 25, 2018
-
-
Bram Moolenaar authored
Problem: Test for terminal response to escape sequence fails for some people. (toothpik) Solution: Run "cat" and let it echo the characters.
-
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.
-