summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.666v7.4.666Bram Moolenaar2015-03-202-8/+24
| | | | | Problem: There is a chance that Vim may lock up. Solution: Handle timer events differently. (Aaron Burrow)
* updated for version 7.4.665v7.4.665Bram Moolenaar2015-03-202-1/+11
| | | | | | Problem: 'linebreak' does not work properly with multi-byte characters. Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro Matsumoto)
* updated for version 7.4.664v7.4.664Bram Moolenaar2015-03-203-1/+5
| | | | | | 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)
* updated for version 7.4.663v7.4.663Bram Moolenaar2015-03-142-1/+10
| | | | | | 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)
* updated for version 7.4.662v7.4.662Bram Moolenaar2015-03-1310-3/+69
| | | | | | 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)
* updated for version 7.4.661v7.4.661Bram Moolenaar2015-03-132-1/+4
| | | | | | | 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)
* updated for version 7.4.660v7.4.660Bram Moolenaar2015-03-132-2/+18
| | | | | | Problem: Using freed memory when g:colors_name is changed in the colors script. (oni-link) Solution: Make a copy of the variable value.
* updated for version 7.4.659v7.4.659Bram Moolenaar2015-03-132-3/+5
| | | | | Problem: When 'ruler' is set the preferred column is reset. (Issue 339) Solution: Don't set curswant when redrawing the status lines.
* updated for version 7.4.658v7.4.658Bram Moolenaar2015-03-082-4/+10
| | | | | | Problem: 'formatexpr' is evaluated too often. Solution: Only invoke it when beyond the 'textwidth' column, as it is documented. (James McCoy)
* updated for version 7.4.657v7.4.657Bram Moolenaar2015-03-062-2/+4
| | | | | Problem: Compiler warnings for pointer mismatch. Solution: Add a typecast. (John Marriott)
* updated for version 7.4.656v7.4.656Bram Moolenaar2015-03-0510-61/+422
| | | | | Problem: Missing changes for glob() in one file. Solution: Add the missing changes.
* updated for version 7.4.655v7.4.655Bram Moolenaar2015-03-055-4/+27
| | | | | | | 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)
* updated for version 7.4.654v7.4.654Bram Moolenaar2015-03-054-19/+35
| | | | | | | 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().
* updated for version 7.4.653v7.4.653Bram Moolenaar2015-03-052-18/+25
| | | | | | | 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)
* updated for version 7.4.652v7.4.652Bram Moolenaar2015-03-053-15/+66
| | | | | | Problem: Xxd lacks a few features. Solution: Use 8 characters for the file position. Add the -e and -o arguments. (Vadim Vygonets)
* updated for version 7.4.651v7.4.651Bram Moolenaar2015-03-052-1/+7
| | | | | | 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)
* updated for version 7.4.650v7.4.650Bram Moolenaar2015-03-053-12/+14
| | | | | Problem: Configure check may fail because the dl library is not used. Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
* updated for version 7.4.649v7.4.649Bram Moolenaar2015-03-052-1/+3
| | | | | | Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void).
* Update a few runtime files.Bram Moolenaar2015-03-024-71/+209
|
* Updated runtime files.Bram Moolenaar2015-02-2817-108/+363
|
* updated for version 7.4.648v7.4.648Bram Moolenaar2015-02-272-1/+2
| | | | | Problem: Tests broken on MS-Windows. Solution: Delete wrong copy line. (Ken Takata)
* updated for version 7.4.647v7.4.647Bram Moolenaar2015-02-273-30/+53
| | | | | | | 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)
* updated for version 7.4.646v7.4.646Bram Moolenaar2015-02-274-7/+18
| | | | | Problem: ":bufdo" may start at a deleted buffer. Solution: Find the first not deleted buffer. (Shane Harper)
* updated for version 7.4.645v7.4.645Bram Moolenaar2015-02-273-5/+6
| | | | | | 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.
* updated for version 7.4.644v7.4.644Bram Moolenaar2015-02-272-1/+4
| | | | | Problem: Stratus VOS doesn't have sync(). Solution: Use fflush(). (Karli Aurelia)
* updated for version 7.4.643v7.4.643Bram Moolenaar2015-02-274-26/+52
| | | | | Problem: Using the default file format for Mac files. (Issue 77) Solution: Reset the try_mac counter in the right place. (Oswald)
* updated for version 7.4.642v7.4.642Bram Moolenaar2015-02-274-6/+24
| | | | | Problem: When using "gf" escaped spaces are not handled. Solution: Recognize escaped spaces.
* updated for version 7.4.641v7.4.641Bram Moolenaar2015-02-272-6/+18
| | | | | Problem: The tabline menu was using ":999tabnew" which is now invalid. Solution: Use ":$tabnew" instead. (Florian Degner)
* updated for version 7.4.640v7.4.640Bram Moolenaar2015-02-172-4/+5
| | | | | | 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)
* updated for version 7.4.639v7.4.639Bram Moolenaar2015-02-176-14/+80
| | | | | Problem: Combination of linebreak and conceal doesn't work well. Solution: Fix the display problems. (Christian Brabandt)
* updated for version 7.4.638v7.4.638Bram Moolenaar2015-02-172-1/+3
| | | | | Problem: Can't build with Lua 5.3 on Windows. Solution: use luaL_optinteger() instead of LuaL_optlong(). (Ken Takata)
* updated for version 7.4.637v7.4.637Bram Moolenaar2015-02-172-6/+9
| | | | | | Problem: Incorrectly read the number of buffer for which an autocommand should be registered. Solution: Reverse check for "<buffer=abuf>". (Lech Lorens)
* Add missing test files from 7.4.634 to the repository.Bram Moolenaar2015-02-172-0/+24
|
* updated for version 7.4.636v7.4.636Bram Moolenaar2015-02-174-5/+28
| | | | | | 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)
* updated for version 7.4.635v7.4.635Bram Moolenaar2015-02-172-0/+12
| | | | | | Problem: If no NL or CR is found in the first block of a file then the 'fileformat' may be set to "mac". (Issue 77) Solution: Check if a CR was found. (eswald)
* updated for version 7.4.634v7.4.634Bram Moolenaar2015-02-178-2/+14
| | | | | Problem: Marks are not restored after redo + undo. Solution: Fix the way marks are restored. (Olaf Dabrunz)
* updated for version 7.4.633v7.4.633Bram Moolenaar2015-02-172-2/+11
| | | | | Problem: After 7.4.630 the problem persists. Solution: Also skip redo when calling a user function.
* updated for version 7.4.632v7.4.632Bram Moolenaar2015-02-172-8/+2
| | | | | | Problem: 7.4.592 breaks the netrw plugin, because the autocommands are skipped. Solution: Roll back the change.
* updated for version 7.4.631v7.4.631Bram Moolenaar2015-02-172-1/+3
| | | | | | Problem: The default conceal character is documented to be a space but it's initially a dash. (Christian Brabandt) Solution: Make the intial value a space.
* updated for version 7.4.630v7.4.630Bram Moolenaar2015-02-172-2/+10
| | | | | | | Problem: When using Insert mode completion combined with autocommands the redo command may not work. Solution: Do not save the redo buffer when executing autocommands. (Yasuhiro Matsumoto)
* updated for version 7.4.629v7.4.629Bram Moolenaar2015-02-102-2/+5
| | | | | Problem: Coverity warning for Out-of-bounds read. Solution: Increase MAXWLEN to 254. (Eliseo Martínez)
* updated for version 7.4.628v7.4.628Bram Moolenaar2015-02-102-1/+3
| | | | | Problem: Compiler warning for variable might be clobbered by longjmp. Solution: Add volatile. (Michael Jarvis)
* updated for version 7.4.627v7.4.627Bram Moolenaar2015-02-106-7/+25
| | | | | Problem: The last screen cell is not updated. Solution: Respect the "tn" termcap feature. (Hayaki Saito)
* updated for version 7.4.626v7.4.626Bram Moolenaar2015-02-102-0/+16
| | | | | Problem: MSVC with W4 gives useless warnings. Solution: Disable more warnings. (Mike Williams)
* updated for version 7.4.625v7.4.625Bram Moolenaar2015-02-102-2/+7
| | | | | Problem: Possible NULL pointer dereference. Solution: Check for NULL before using it. (Mike Williams)
* updated for version 7.4.624v7.4.624Bram Moolenaar2015-02-105-0/+47
| | | | | Problem: May leak memory or crash when vim_realloc() returns NULL. Solution: Handle a NULL value properly. (Mike Williams)
* updated for version 7.4.623v7.4.623Bram Moolenaar2015-02-102-4/+7
| | | | | Problem: Crash with pattern: \(\)\{80000} (Dominique Pelle) Solution: When the max limit is large fall back to the old engine.
* updated for version 7.4.622v7.4.622Bram Moolenaar2015-02-052-1/+3
| | | | | Problem: Compiler warning for unused argument. Solution: Add UNUSED.
* updated for version 7.4.621v7.4.621Bram Moolenaar2015-02-042-2/+4
| | | | | Problem: Returning 1 in the wrong function. (Raymond Ko) Solution: Return 1 in the right function (hopefully).
* updated for version 7.4.620v7.4.620Bram Moolenaar2015-02-042-1/+3
| | | | | Problem: Compiler warning for unitinialized variable. (Tony Mechelynck) Solution: Initialize "did_free". (Ben Fritz)