summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2015-03-25updated for version 7.4.683v7.4.683Bram Moolenaar
Problem: Typo in the vimtutor command. Solution: Fix the typo. (Corey Farwell, github pull 349)
2015-03-24updated for version 7.4.682v7.4.682Bram Moolenaar
Problem: The search highlighting and match highlighting replaces the cursorline highlighting, this doesn't look good. Solution: Combine the highlighting. (Yasuhiro Matsumoto)
2015-03-24Add test files for patch 7.4.680.Bram Moolenaar
2015-03-24updated for version 7.4.681v7.4.681Bram Moolenaar
Problem: MS-Windows: When Vim is minimized the window height is computed incorrectly. Solution: When minimized use the previously computed size. (Ingo Karkat)
2015-03-24updated for version 7.4.680v7.4.680Bram Moolenaar
Problem: CTRL-W in Insert mode does not work well for multi-byte characters. Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
2015-03-24updated for version 7.4.679v7.4.679Bram Moolenaar
Problem: Color values greater than 255 cause problems on MS-Windows. Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
2015-03-24updated for version 7.4.678v7.4.678Bram Moolenaar
Problem: When using --remote the directory may end up being wrong. Solution: Use localdir() to find out what to do. (Xaizek)
2015-03-24updated for version 7.4.677v7.4.677Bram Moolenaar
Problem: Configure fails when specifying a python-config-dir. (Lcd) Solution: Check if PYTHONFRAMEWORKPREFIX is set.
2015-03-24updated for version 7.4.676v7.4.676Bram Moolenaar
Problem: On Mac, when not using the default Python framework configure doesn't do the right thing. Solution: Use a linker search path. (Kazunobu Kuriyama)
2015-03-24updated for version 7.4.675v7.4.675Bram Moolenaar
Problem: When a FileReadPost autocommand moves the cursor inside a line it gets moved back. Solution: When checking whether an autocommand moved the cursor store the column as well. (Christian Brabandt)
2015-03-21updated for version 7.4.674v7.4.674Bram Moolenaar
Problem: Missing changes in one file. Solution: Also change the win32 file.
2015-03-21updated for version 7.4.673v7.4.673Bram Moolenaar
Problem: The first syntax entry gets sequence number zero, which doesn't work. (Clinton McKay) Solution: Start at number one. (Bjorn Linse)
2015-03-21updated for version 7.4.672v7.4.672Bram Moolenaar
Problem: When completing a shell command, directories in the current directory are not listed. Solution: When "." is not in $PATH also look in the current directory for directories.
2015-03-21updated for version 7.4.671v7.4.671Bram Moolenaar
Problem: Warning for shadowing a variable. Solution: Rename off to mb_off. (Kazunobu Kuriyama)
2015-03-20updated for version 7.4.670v7.4.670Bram Moolenaar
Problem: Using 'cindent' for Javascript is less than perfect. Solution: Improve indenting of continuation lines. (Hirohito Higashi)
2015-03-20updated for version 7.4.669v7.4.669Bram Moolenaar
Problem: When netbeans is active the sign column always shows up. Solution: Only show the sign column once a sign has been added. (Xavier de Gaye)
2015-03-20updated for version 7.4.668v7.4.668Bram Moolenaar
Problem: Can't use a glob pattern as a regexp pattern. Solution: Add glob2regpat(). (Christian Brabandt)
2015-03-20updated for version 7.4.667v7.4.667Bram Moolenaar
Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn' is. (Carlos Pita) Solution: Make it consistent. (Christian Brabandt)
2015-03-20updated for version 7.4.666v7.4.666Bram Moolenaar
Problem: There is a chance that Vim may lock up. Solution: Handle timer events differently. (Aaron Burrow)
2015-03-20updated for version 7.4.665v7.4.665Bram Moolenaar
Problem: 'linebreak' does not work properly with multi-byte characters. Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro Matsumoto)
2015-03-20updated for version 7.4.664v7.4.664Bram Moolenaar
Problem: When 'compatible' is reset 'numberwidth' is set to 4, but the effect doesn't show until a change is made. Solution: Check if 'numberwidth' changed. (Christian Brabandt)
2015-03-14updated for version 7.4.663v7.4.663Bram Moolenaar
Problem: When using netbeans a buffer is not found in another tab. Solution: When 'switchbuf' is set to "usetab" then switch to another tab when possible. (Xavier de Gaye)
2015-03-13updated for version 7.4.662v7.4.662Bram Moolenaar
Problem: When 'M' is in the 'cpo' option then selecting a text object in parenthesis does not work correctly. Solution: Keep 'M' in 'cpo' when finding a match. (Hirohito Higashi)
2015-03-13updated for version 7.4.661v7.4.661Bram Moolenaar
Problem: Using "0 CTRL-D" in Insert mode may have CursorHoldI interfere. (Gary Johnson) Solution: Don't store K_CURSORHOLD as the last character. (Christian Brabandt)
2015-03-13updated for version 7.4.660v7.4.660Bram Moolenaar
Problem: Using freed memory when g:colors_name is changed in the colors script. (oni-link) Solution: Make a copy of the variable value.
2015-03-13updated for version 7.4.659v7.4.659Bram Moolenaar
Problem: When 'ruler' is set the preferred column is reset. (Issue 339) Solution: Don't set curswant when redrawing the status lines.
2015-03-08updated for version 7.4.658v7.4.658Bram Moolenaar
Problem: 'formatexpr' is evaluated too often. Solution: Only invoke it when beyond the 'textwidth' column, as it is documented. (James McCoy)
2015-03-06updated for version 7.4.657v7.4.657Bram Moolenaar
Problem: Compiler warnings for pointer mismatch. Solution: Add a typecast. (John Marriott)
2015-03-05updated for version 7.4.656v7.4.656Bram Moolenaar
Problem: Missing changes for glob() in one file. Solution: Add the missing changes.
2015-03-05updated for version 7.4.655v7.4.655Bram Moolenaar
Problem: Text deleted by "dit" depends on indent of closing tag. (Jan Parthey) Solution: Do not adjust oap->end in do_pending_operator(). (Christian Brabandt)
2015-03-05updated for version 7.4.654v7.4.654Bram Moolenaar
Problem: glob() and globpath() cannot include links to non-existing files. (Charles Campbell) Solution: Add an argument to include all links with glob(). (James McCoy) Also for globpath().
2015-03-05updated for version 7.4.653v7.4.653Bram Moolenaar
Problem: Insert mode completion with complete() may have CTRL-L work like CTRL-P. Solution: Handle completion with complete() differently. (Yasuhiro Matsumoto, Christian Brabandt, Hirohito Higashi)
2015-03-05updated for version 7.4.652v7.4.652Bram Moolenaar
Problem: Xxd lacks a few features. Solution: Use 8 characters for the file position. Add the -e and -o arguments. (Vadim Vygonets)
2015-03-05updated for version 7.4.651v7.4.651Bram Moolenaar
Problem: Can't match "%>80v" properly for multi-byte characters. Solution: Multiply the character number by the maximum number of bytes in a character. (Yasuhiro Matsumoto)
2015-03-05updated for version 7.4.650v7.4.650Bram Moolenaar
Problem: Configure check may fail because the dl library is not used. Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
2015-03-05updated for version 7.4.649v7.4.649Bram Moolenaar
Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void).
2015-02-27updated for version 7.4.648v7.4.648Bram Moolenaar
Problem: Tests broken on MS-Windows. Solution: Delete wrong copy line. (Ken Takata)
2015-02-27updated for version 7.4.647v7.4.647Bram Moolenaar
Problem: After running the tests on MS-Windows many files differ from their originals as they were checked out. Solution: Use a temp directory for executing the tests. (Ken Takata, Taro Muraoka)
2015-02-27updated for version 7.4.646v7.4.646Bram Moolenaar
Problem: ":bufdo" may start at a deleted buffer. Solution: Find the first not deleted buffer. (Shane Harper)
2015-02-27updated for version 7.4.645v7.4.645Bram Moolenaar
Problem: When splitting the window in a BufAdd autocommand while still in the first, empty buffer the window count is wrong. Solution: Do not reset b_nwindows to zero and don't increment it.
2015-02-27updated for version 7.4.644v7.4.644Bram Moolenaar
Problem: Stratus VOS doesn't have sync(). Solution: Use fflush(). (Karli Aurelia)
2015-02-27updated for version 7.4.643v7.4.643Bram Moolenaar
Problem: Using the default file format for Mac files. (Issue 77) Solution: Reset the try_mac counter in the right place. (Oswald)
2015-02-27updated for version 7.4.642v7.4.642Bram Moolenaar
Problem: When using "gf" escaped spaces are not handled. Solution: Recognize escaped spaces.
2015-02-27updated for version 7.4.641v7.4.641Bram Moolenaar
Problem: The tabline menu was using ":999tabnew" which is now invalid. Solution: Use ":$tabnew" instead. (Florian Degner)
2015-02-17updated for version 7.4.640v7.4.640Bram Moolenaar
Problem: After deleting characters in Insert mode such that lines are joined undo does not work properly. (issue 324) Solution: Use Insstart instead of Insstart_orig. (Christian Brabandt)
2015-02-17updated for version 7.4.639v7.4.639Bram Moolenaar
Problem: Combination of linebreak and conceal doesn't work well. Solution: Fix the display problems. (Christian Brabandt)
2015-02-17updated for version 7.4.638v7.4.638Bram Moolenaar
Problem: Can't build with Lua 5.3 on Windows. Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata)
2015-02-17updated for version 7.4.637v7.4.637Bram Moolenaar
Problem: Incorrectly read the number of buffer for which an autocommand should be registered. Solution: Reverse check for "<buffer=abuf>". (Lech Lorens)
2015-02-17Add missing test files from 7.4.634 to the repository.Bram Moolenaar
2015-02-17updated for version 7.4.636v7.4.636Bram Moolenaar
Problem: A search with end offset gets stuck at end of file. (Gary Johnson) Solution: When a search doesn't move the cursor repeat it with a higher count. (Christian Brabandt)