summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.676v7.4.676Bram Moolenaar2015-03-243-0/+44
| | | | | | 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)
* updated for version 7.4.675v7.4.675Bram Moolenaar2015-03-242-7/+7
| | | | | | | 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)
* updated for version 7.4.674v7.4.674Bram Moolenaar2015-03-212-1/+9
| | | | | Problem: Missing changes in one file. Solution: Also change the win32 file.
* updated for version 7.4.673v7.4.673Bram Moolenaar2015-03-212-1/+3
| | | | | | Problem: The first syntax entry gets sequence number zero, which doesn't work. (Clinton McKay) Solution: Start at number one. (Bjorn Linse)
* Update runtime files.Bram Moolenaar2015-03-219-39/+217
|
* updated for version 7.4.672v7.4.672Bram Moolenaar2015-03-2113-21/+62
| | | | | | | 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.
* updated for version 7.4.671v7.4.671Bram Moolenaar2015-03-212-3/+5
| | | | | Problem: Warning for shadowing a variable. Solution: Rename off to mb_off. (Kazunobu Kuriyama)
* updated for version 7.4.670v7.4.670Bram Moolenaar2015-03-204-15/+365
| | | | | Problem: Using 'cindent' for Javascript is less than perfect. Solution: Improve indenting of continuation lines. (Hirohito Higashi)
* updated for version 7.4.669v7.4.669Bram Moolenaar2015-03-207-3/+19
| | | | | | 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)
* updated for version 7.4.668v7.4.668Bram Moolenaar2015-03-202-0/+18
| | | | | Problem: Can't use a glob pattern as a regexp pattern. Solution: Add glob2regpat(). (Christian Brabandt)
* updated for version 7.4.667v7.4.667Bram Moolenaar2015-03-202-0/+24
| | | | | | Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn' is. (Carlos Pita) Solution: Make it consistent. (Christian Brabandt)
* 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.