- Apr 10, 2018
-
-
Bram Moolenaar authored
Problem: Python may not work when using statically linked library . Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure if the Python library is linked statically.
-
Bram Moolenaar authored
Problem: Xxd test sometimes fails. Solution: Wipe out the XXDfile buffer.
-
Bram Moolenaar authored
Problem: Not easy to run one test with gvim instead of vim. Solution: Add VIMTESTTARGET in Makefile.
-
Bram Moolenaar authored
Problem: No tests for xxd. Solution: Add a test. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Some macros are used without a semicolon, causing auto-indent to be wrong. Solution: Use the do-while(0) trick. (Ozaki Kiichi, closes #2729)
-
Bram Moolenaar authored
Problem: 64 bit compiler warnings. Solution: change type, add type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: Python does not work when configuring with specific dir. (Rajdeep) Solution: Do define PYTHON_HOME and PYTHON3_HOME in configure if the Python config dir was specified.
-
Bram Moolenaar authored
Problem: Can't set ANSI colors of a terminal window. Solution: Add term_setansicolors(), term_getansicolors() and g:term_ansi_colors. (Andy Massimino, closes #2747)
-
Bram Moolenaar authored
Problem: ml_get errors when using terminal window for shell command. (Blay263) Solution: Do not change the size of the current window.
-
Bram Moolenaar authored
Problem: Python upgrade breaks Vim when defining PYTHON_HOME. Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure. (Naoki Inada, closes #2787)
-
Bram Moolenaar authored
Problem: Auto indenting breaks inserting a block. Solution: Do not check for cursor movement if indent was changed. (Christian Brabandt, closes #2778)
-
Bram Moolenaar authored
Problem: The format attribute fails with MinGW. (John Marriott) Solution: Don't use the format attribute with MinGW.
-
Bram Moolenaar authored
Problem: Memory allocated by libvterm does not show up in profile. Solution: Pass allocater functions to vterm_new().
-
- Apr 08, 2018
-
-
Bram Moolenaar authored
Problem: Compiler warning for printf format. (Chdiza) Solution: Change type to "long long". (closes #2791)
-
Bram Moolenaar authored
Problem: Errorformat "%r" implies "%>". (Jan Gosmann) Solution: Jump to before setting fmt_ptr. (Yegappan Lakshmanan, closes #2785)
-
Bram Moolenaar authored
Problem: No compiler warning for wrong format in vim_snprintf(). Solution: Add printf attribute for gcc. Fix reported problems.
-
Bram Moolenaar authored
Problem: No compiler warning for wrong printf format. Solution: Add a printf attribute for gcc. Fix reported problems. (Dominique Pelle, closes #2789)
-
Bram Moolenaar authored
Problem: Unused macro argument in libvterm. (Randall W. Morris) Solution: Remove the argument.
-
- Apr 07, 2018
-
-
Bram Moolenaar authored
Problem: Libvterm can't handle a long OSC string that is split. Solution: When an incomplete OSC string is received copy it to the parser buffer. Increase the size of the parser buffer to be able to handle longer strings.
-
Bram Moolenaar authored
Problem: Terminal window tests are still a bit flaky. Solution: Increase the waiting time even more. (Elimar Riesebieter)
-
Bram Moolenaar authored
Problem: Error during completion causes command to be cancelled. Solution: Reset did_emsg before waiting for another character. (Tom M.)
-
Bram Moolenaar authored
Problem: Crash when passing non-dict argument as env to job_start(). Solution: Check for valid argument. (Ozaki Kiichi, closes #2765)
-
Bram Moolenaar authored
Problem: Terminal window tests are still a bit flaky. Solution: Increase the waiting time for the buffer to be created.
-
- Apr 06, 2018
-
-
Bram Moolenaar authored
Problem: :vimgrep may add entries to the wrong quickfix list. Solution: Use the list identifier. (Yegappan Lakshmanan)
-
Bram Moolenaar authored
Problem: Terminal debugger: can't re-open source code window. Solution: Add the :Source command. Also create the window if needed when gdb stops at a source line.
-
Bram Moolenaar authored
Problem: Terminal window tests are flaky. Solution: Increase the waiting time for Vim to start.
-
Bram Moolenaar authored
-
- Apr 05, 2018
-
-
Bram Moolenaar authored
Problem: % argument in ch_log() causes trouble. Solution: Use string as third argument in internal ch_log(). (Dominique Pelle, closes #2784)
-
Bram Moolenaar authored
Problem: When running a terminal from the GUI 'term' is not useful. Solution: Use $TERM in the GUI if it starts with "xterm". (closes #2776)
-
Bram Moolenaar authored
Problem: Test failure because of not allocating enough space. Solution: Allocate more bytes.
-
Bram Moolenaar authored
Problem: Cannot build without multi-byte feature. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Showing dump diff doesn't mention both file names. Solution: Add the file name in the separator line.
-
- 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.
-