- Dec 22, 2018
-
-
Bram Moolenaar authored
Problem: Overuling CONF_ARGS from the environment no longer works. (Tony Mechelynck) Solution: Do not define any CONF_ARGS by default.
-
Bram Moolenaar authored
Problem: :echomsg and :echoerr do not handle List and Dict like :echo does. (Daniel Hahler) Solution: Be more tolerant about the expression result type.
-
- Dec 21, 2018
-
-
Bram Moolenaar authored
Problem: term_getjob() does not return v:null as documented. Solution: Do return v:null. (Damien) Add a test.
-
Bram Moolenaar authored
Problem: NSIS installer gets two files from the wrong directory. Solution: Change ${VIMRT} to "..\".
-
Bram Moolenaar authored
Problem: NSIS installer is outdated. Solution: Use modern syntax, MUI2 and make it work better. Add translations. (Ken Takata, closes #3501)
-
Bram Moolenaar authored
Problem: Get_tv function names are not consistent. Solution: Rename to tv_get.
-
Bram Moolenaar authored
Problem: Placing signs can be complicated. Solution: Add functions for defining and placing signs. Introduce a group name to avoid different plugins using the same signs. (Yegappan Lakshmanan, closes #3652)
-
Bram Moolenaar authored
Problem: When executing an insecure function the secure flag is stuck. (Gabriel Barta) Solution: Restore "secure" instead of decrementing it. (closes #3705)
-
Bram Moolenaar authored
Problem: Cannot use two global runtime dirs with configure. Solution: Support a comma in --with-global-runtime. (James McCoy, closes #3704)
-
- Dec 20, 2018
-
-
Bram Moolenaar authored
Problem: Crash when using terminal with long composing characters. Solution: Make space for all characters. (Yasuhiro Matsumoto, closes #3619, closes #3703)
-
- Dec 19, 2018
-
-
Bram Moolenaar authored
Problem: MS-Windows ctags file list differs from Unix. Solution: Define TAGS_FILES in the common makefile. (partly by Ken Takata)
-
Bram Moolenaar authored
Problem: MS-Windows: unused variable, depending on the Ruby version. Solution: Put ruby_sysinit and NtInitialize inside #ifdef and make them consistent. (Ken Takata)
-
- Dec 18, 2018
-
-
Bram Moolenaar authored
Problem: Coverals is not updating. Solution: Adjust path in Travis config.
-
Bram Moolenaar authored
Problem: Proto files are not in sync with the source code. Solution: Update the proto files.
-
Bram Moolenaar authored
-
- Dec 16, 2018
-
-
Bram Moolenaar authored
Problem: 'cryptmethod' defaults to a very old method. Solution: Default to "blowfish2", it is now widely available.
-
Bram Moolenaar authored
Problem: Running make in the top directory echoes a comment. Solution: Prefix with @. (closes #3698)
-
Bram Moolenaar authored
Problem: Autocommand test fails on MS-Windows. Solution: Use pathcmp() instead of strcmp() to check if a directory differs.
-
Bram Moolenaar authored
Problem: The :stop command is not tested. Solution: Test :stop using a terminal window.
-
Bram Moolenaar authored
Problem: DirChanged is also triggered when the directory didn't change. (Daniel Hahler) Solution: Compare the current with the new directory. (closes #3697)
-
Bram Moolenaar authored
Problem: A few compiler warnings. Solution: Add type casts. (Mike Williams)
-
- Dec 15, 2018
-
-
Bram Moolenaar authored
Problem: Channel test is flaky. Solution: Add test to list of flaky tests.
-
Bram Moolenaar authored
Problem: Without the +eval feature the indent tests don't work. Solution: Skip the body of the tests.
-
Bram Moolenaar authored
Problem: Indent tests may use the wrong Vim binary. Solution: Pass in the just built Vim binary.
-
Bram Moolenaar authored
Problem: Cannot run test_libvterm from the top directory. Solution: Add test target in toplevel Makefile.
-
Bram Moolenaar authored
Problem: Not all parts of printf() are tested. Solution: Add a few more test cases. (Dominique Pelle, closes #3691)
-
Bram Moolenaar authored
Problem: Libvterm tests are not run with coverage. Solution: Adjust the Travis config. Show the actually run commands.
-
Bram Moolenaar authored
Problem: Libvterm tests fail to run on Mac. Solution: Only run libvterm tests on Linux.
-
Bram Moolenaar authored
Problem: Illegal memory access in libvterm test. Solution: Fix off-by-one error.
-
Bram Moolenaar authored
Problem: The libvterm tests are not run as part of Vim tests. Solution: Add testing libvterm.
-
- Dec 14, 2018
-
-
Bram Moolenaar authored
Problem: Channel sort test is flaky. Solution: Do not check if the job is running, it may have be done very fast.
-
Bram Moolenaar authored
Problem: When a job ends the closed channels are not handled. Solution: When a job is detected to have ended, check the channels again. (closes #3530)
-
Bram Moolenaar authored
Problem: Compilation error in gvimext.cpp. Solution: Return a value. Also fix using uninitialized variable.
-
Bram Moolenaar authored
Problem: Cannot define a sign with space in the text. Solution: Allow for escaping characters. (Ben Jackson, closes #2967)
-
Bram Moolenaar authored
Problem: GvimExt: realloc() failing is not handled properly. Solution: Check for NULL return. (Jan-Jaap Korpershoek, closes #3689)
-
Bram Moolenaar authored
Problem: :digraph output is not easy to read. Solution: Add highlighting for :digraphs. (Marcin Szamotulski, closes #3572) Also add section headers for :digraphs!.
-
Bram Moolenaar authored
Problem: Undo test may fail on MS-Windows. Solution: Also handle lower case drive letters.
-
Bram Moolenaar authored
Problem: With search CTRL-L does not pick up composing characters. Solution: Check for composing characters. (Christian Brabandt, closes #3682) [code change was accidentally included in 8.1.0579]
-
Bram Moolenaar authored
Problem: Using illogical name for get_dict_number()/get_dict_string(). Solution: Rename to start with dict_.
-
Bram Moolenaar authored
Problem: Text properties are not enabled. Solution: Fix sizeof argument and re-enable the text properties feature. Fix memory leak.
-