summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.608v7.4.608v7-4-608Bram Moolenaar2015-01-273-11/+24
| | | | | Problem: test_eval fails when the clipboard feature is missing. Solution: Skip part of the test. Reduce the text used.
* Added tag v7-4-607 for changeset 52b89a52ffd4Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.607v7.4.607v7-4-607Bram Moolenaar2015-01-272-2/+4
| | | | | Problem: Compiler warnings for unused variables. Solution: Move them inside #ifdef. (Kazunobu Kuriyama)
* Added tag v7-4-606 for changeset 22f164bd7e8eBram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.606v7.4.606v7-4-606Bram Moolenaar2015-01-272-0/+4
| | | | | Problem: May crash when using a small window. Solution: Avoid dividing by zero. (Christian Brabandt)
* Added tag v7-4-605 for changeset c1ed973fb58fBram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.605v7.4.605v7-4-605Bram Moolenaar2015-01-275-17/+56
| | | | | | Problem: The # register is not writable, it cannot be restored after jumping around. Solution: Make the # register writable. (Marcin Szamotulski)
* Added tag v7-4-604 for changeset f625b6302d04Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.604v7.4.604v7-4-604Bram Moolenaar2015-01-272-1/+3
| | | | | Problem: Running tests changes viminfo. Solution: Disable viminfo.
* Added tag v7-4-603 for changeset 0c8738124a7bBram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.603v7.4.603v7-4-603Bram Moolenaar2015-01-272-14/+40
| | | | | | | Problem: 'foldcolumn' may be set such that it fills the whole window, not leaving space for text. Solution: Reduce the foldcolumn width when there is not sufficient room. (idea by Christian Brabandt)
* Added tag v7-4-602 for changeset 4e31d9f7c896Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.602v7.4.602v7-4-602Bram Moolenaar2015-01-273-16/+6
| | | | | Problem: ":set" does not accept hex numbers as documented. Solution: Use vim_str2nr(). (ZyX)
* Added tag v7-4-601 for changeset 2561531decf1Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.601v7.4.601v7-4-601Bram Moolenaar2015-01-273-5/+13
| | | | | Problem: It is not possible to have feedkeys() insert characters. Solution: Add the 'i' flag.
* Added tag v7-4-600 for changeset 436d6c9e57f2Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.600v7.4.600v7-4-600Bram Moolenaar2015-01-272-57/+76
| | | | | Problem: Memory wasted in struct because of aligning. Solution: Split pos in lnum and col. (Dominique Pelle)
* Added tag v7-4-599 for changeset 1ef8ce97fc40Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.599v7.4.599v7-4-599Bram Moolenaar2015-01-272-1/+3
| | | | | | Problem: Out-of-memory error. Solution: Avoid trying to allocate a negative amount of memory, use size_t instead of int. (Dominique Pelle)
* Added tag v7-4-598 for changeset b01ca71f93b2Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.598v7.4.598v7-4-598Bram Moolenaar2015-01-275-26/+45
| | | | | | | | Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. (Salman Halim) Solution: Change how clip_did_set_selection is used and add clipboard_needs_update and global_change_count. (Christian Brabandt)
* Added tag v7-4-597 for changeset c124a8f34ed1Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.597v7.4.597v7-4-597Bram Moolenaar2015-01-272-0/+4
| | | | | Problem: Cannot change the result of systemlist(). Solution: Initialize v_lock. (Yukihiro Nakadaira)
* Added tag v7-4-596 for changeset 6da912e32896Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.596v7.4.596v7-4-596Bram Moolenaar2015-01-272-0/+4
| | | | | Problem: Tiny build doesn't compile. (Ike Devolder) Solution: Add #ifdef.
* Added tag v7-4-595 for changeset d83436d11987Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.595v7.4.595v7-4-595Bram Moolenaar2015-01-272-0/+3
| | | | | Problem: The test_command_count test fails when using Japanese. Solution: Force the language to C. (Hirohito Higashi)
* Added tag v7-4-594 for changeset f9d02ce2f745Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.594v7.4.594v7-4-594Bram Moolenaar2015-01-274-4/+30
| | | | | | | Problem: Using a block delete while 'breakindent' is set does not work properly. Solution: Use "line" instead of "prev_pend" as the first argument to lbr_chartabsize_adv(). (Hirohito Higashi)
* Added tag v7-4-593 for changeset bdc8e71633e4Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.593v7.4.593v7-4-593Bram Moolenaar2015-01-274-9/+21
| | | | | | Problem: Crash when searching for "x\{0,90000}". (Dominique Pelle) Solution: Bail out from the NFA engine when the max limit is much higher than the min limit.
* Added tag v7-4-592 for changeset 005a6b650866Bram Moolenaar2015-01-270-0/+0
|
* updated for version 7.4.592v7.4.592v7-4-592Bram Moolenaar2015-01-272-0/+9
| | | | | | Problem: When doing ":e foobar" when already editing "foobar" and 'buftype' is "nofile" the buffer is cleared. (Xavier de Gaye) Solution: Do no clear the buffer.
* Update runtime files.Bram Moolenaar2015-01-2517-119/+224
|
* Added tag v7-4-591 for changeset 7b8e3be930f3Bram Moolenaar2015-01-220-0/+0
|
* updated for version 7.4.591v7.4.591v7-4-591Bram Moolenaar2015-01-222-1/+3
| | | | | Problem: test_listlbr_utf8 fails when the conceal feature is not available. Solution: Check for the conceal feature. (Kazunobu Kuriyama)
* Added tag v7-4-590 for changeset 5b8d26b85437Bram Moolenaar2015-01-220-0/+0
|
* updated for version 7.4.590v7.4.590v7-4-590Bram Moolenaar2015-01-222-1/+3
| | | | | Problem: Using ctrl_x_mode as if it contains flags. Solution: Don't use AND with CTRL_X_OMNI. (Hirohito Higashi)
* Added tag v7-4-589 for changeset 8ff2d1b611bfBram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.589v7.4.589v7-4-589Bram Moolenaar2015-01-202-7/+13
| | | | | | Problem: In the MS-Windows console Vim can't handle greek characters when encoding is utf-8. Solution: Escape K_NUL. (Yasuhiro Matsumoto)
* Added tag v7-4-588 for changeset a03e143b9358Bram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.588v7.4.588v7-4-588Bram Moolenaar2015-01-2010-1/+43
| | | | | | Problem: ":0argedit foo" puts the new argument in the second place instead of the first. Solution: Adjust the range type. (Ingo Karkat)
* Added tag v7-4-587 for changeset 70793fedd25aBram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.587v7.4.587v7-4-587Bram Moolenaar2015-01-204-8/+51
| | | | | Problem: Conceal does not work properly with 'linebreak'. (cs86661) Solution: Save and restore boguscols. (Christian Brabandt)
* Added tag v7-4-586 for changeset 667cb2eb17a5Bram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.586v7.4.586v7-4-586Bram Moolenaar2015-01-202-1/+2
| | | | | Problem: Parallel building of the documentation html files is not reliable. Solution: Remove a cyclic dependency. (Reiner Herrmann)
* Added tag v7-4-585 for changeset 1d3139ae6ce6Bram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.585v7.4.585v7-4-585Bram Moolenaar2015-01-204-3/+34
| | | | | Problem: Range for :bdelete does not work. (Ronald Schild) Solution: Also allow unloaded buffers.
* Added tag v7-4-584 for changeset 79b3d83592c5Bram Moolenaar2015-01-200-0/+0
|
* updated for version 7.4.584v7.4.584v7-4-584Bram Moolenaar2015-01-202-1/+3
| | | | | Problem: With tiny features test_command_count may fail. Solution: Source small.vim. (Christian Brabandt)