- Jan 17, 2013
-
-
Bram Moolenaar authored
Problem: Jumping to a mark does not open a fold if it is in the same line. (Wiktor Ruben) Solution: Also compare the column after the jump. (Christian Brabandt)
-
- Dec 16, 2012
-
-
Bram Moolenaar authored
Problem: On some systems the tabline is not redrawn. Solution: Call RedrawWindow(). (Charles Peacech)
-
- Dec 12, 2012
-
-
Bram Moolenaar authored
Problem: In Visual mode a "-p does not work. (Marcin Szamotulski) Solution: Avoid writing to "- before putting it. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: dv_ deletes the white space before the line. Solution: Move the cursor to the first non-white. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: MS-Windows: Updating the tabline is slow when there are many tabs. Solution: Disable redrawing while performing the update. (Arseny Kapoulkine)
-
Bram Moolenaar authored
Problem: Matchit plugin does not handle space in #ifdef. Solution: Change matching pattern to allow spaces. (Mike Morearty)
-
Bram Moolenaar authored
Problem: Issue 96: May access freed memory when a put command triggers autocommands. (Dominique Pelle) Solution: Call u_save() before getting y_array.
-
Bram Moolenaar authored
Problem: A location list can get a wrong count in :lvimgrep. Solution: Check if the list was changed by autocommands. (mostly by Christian Brabandt)
-
Bram Moolenaar authored
Problem: Autoconf doesn't find Python 3 if it's called "python". Solution: Search for "python2" and "python3" first, then "python".
-
- Dec 06, 2012
-
-
Bram Moolenaar authored
Problem: Latest nmake is not recognized. Solution: Add nmake version 11.00.51106.1. (Raymond Ko)
-
- Dec 05, 2012
-
-
Bram Moolenaar authored
Problem: When there is a QuitPre autocommand using ":q" twice does not work for exiting when there are more files to edit. Solution: Do not decrement quitmore in an autocommand. (Techlive Zheng)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Test 49 script file doesn't fold properly. Solution: Add a colon.
-
Bram Moolenaar authored
Problem: Test 61 is flaky, it fails once in a while. Solution: When it fails retry once.
-
Bram Moolenaar authored
Problem: The justify macro does not always work correctly. Solution: Fix off-by-one error (James McCoy)
-
Bram Moolenaar authored
Problem: Python interface doesn't build without the multi-byte feature. Solution: Add #ifdef. (Ken Takata)
-
Bram Moolenaar authored
Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich)
-
Bram Moolenaar authored
Problem: When characters are concealed text aligned with tabs are no longer aligned, e.g. at ":help :index". Solution: Compensate space for tabs for concealed characters. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Memory leaks when using location lists. Solution: Set qf_title to something. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Automatically setting 'ttymouse' doesn't work. Solution: Reset the "option was set" flag when using the default.
-
- Nov 29, 2012
-
-
Bram Moolenaar authored
Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
-
- Nov 28, 2012
-
-
Bram Moolenaar authored
Problem: Tiny build still fails. Solution: Add #else in the right place.
-
Bram Moolenaar authored
Problem: Leaking memory when :vimgrep restores the directory. Solution: Free the allocated memory. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Tiny build fails. Solution: Move #ifdef. (Ike Devolder)
-
Bram Moolenaar authored
Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Computing number of lines may have an integer overflow. Solution: Check for MAXCOL explicitly. (Dominique Pelle)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Unused function argument. Solution: Remove it. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When using do_cmdline() recursively did_endif is not reset, causing messages to be overwritten. Solution: Reset did_endif. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: File name completion in input() escapes white space. (Frederic Hardy) Solution: Do not escape white space. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Cannot build Ruby 1.9 with MingW or Cygwin. Solution: Add another include directory. (Ken Takata)
-
Bram Moolenaar authored
Problem: Cannot put help files in a sub-directory. Solution: Make :helptags work for sub-directories. (Charles Campbell)
-
Bram Moolenaar authored
Problem: Tests fail when including MzScheme. Solution: Change #ifdefs for vim_main2().
-
Bram Moolenaar authored
Problem: Compiler warnings for function arguments. Solution: Use inteptr_t instead of long.
-
Bram Moolenaar authored
Problem: Py3Init_vim() is exported uneccessarily. Solution: Make it static. (Ken Takata)
-
Bram Moolenaar authored
Problem: Crash in PHP file when using syntastic. (Ike Devolder) Solution: Avoid using NULL pointer. (Christian Brabandt)
-
- Nov 24, 2012
-
-
Bram Moolenaar authored
Problem: Building with Ruby fails on some systems. Solution: Remove "static" and add #ifndef PROTO. (Ken Takata)
-
- Nov 23, 2012
-
-
Bram Moolenaar authored
Problem: Cannot compile with MzScheme interface on Ubuntu 12.10. Solution: Find the collects directory under /usr/share.
-
Bram Moolenaar authored
Problem: Can't always find Win32.mak when building GvimExt. Solution: Use same mechanism as in Make_mvc.mak. (Cade Foster)
-
Bram Moolenaar authored
Problem: Typos and duplicate info in README. Solution: Fix the text.
-