summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-29updated for version 7.4.316Bram Moolenaar
Problem: Warning from 64-bit compiler. Solution: Add type cast. (Mike Williams)
2014-05-29updated for version 7.4.315Bram Moolenaar
Problem: Fixes for computation of topline not tested. Solution: Add test. (Hirohito Higashi)
2014-05-28updated for version 7.4.314Bram Moolenaar
Problem: Completion messages can get in the way of a plugin. Solution: Add 'c' flag to 'shortmess' option. (Shougo Matsu)
2014-05-28updated for version 7.4.313Bram Moolenaar
Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos().
2014-05-28updated for version 7.4.312Bram Moolenaar
Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski)
2014-05-28updated for version 7.4.311Bram Moolenaar
Problem: Can't use winrestview to only restore part of the view. Solution: Handle missing items in the dict. (Christian Brabandt)
2014-05-28updated for version 7.4.310Bram Moolenaar
Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor.
2014-05-28updated for version 7.4.309Bram Moolenaar
Problem: When increasing the size of the lower window, the upper window jumps back to the top. (Ron Aaron) Solution: Change setting the topline. (Nobuhiro Takasaki)
2014-05-28updated for version 7.4.308Bram Moolenaar
Problem: When using ":diffsplit" on an empty file the cursor is displayed on the command line. Solution: Limit the value of w_topfill.
2014-05-22updated for version 7.4.307Bram Moolenaar
Problem: Can't build without the +termresponse feature. Solution: Add proper #ifdefs.
2014-05-22updated for version 7.4.306Bram Moolenaar
Problem: getchar(0) does not return Esc. Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro Matsumoto)
2014-05-22Runtime file updates.Bram Moolenaar
2014-05-22updated for version 7.4.305Bram Moolenaar
Problem: Making 'ttymouse' empty after the xterm version was requested causes problems. (Elijah Griffin) Solution: Do not check for DEC mouse sequences when the xterm version was requested. Also don't request the xterm version when DEC mouse was enabled.
2014-05-22updated for version 7.4.304Bram Moolenaar
Problem: Cannot always use Python with Vim. Solution: Add the manifest to the executable. (Jacques Germishuys)
2014-05-22updated for version 7.4.303Bram Moolenaar
Problem: When using double-width characters the text displayed on the command line is sometimes truncated. Solution: Reset the string lenght. (Nobuhiro Takasaki)
2014-05-22updated for version 7.4.302Bram Moolenaar
Problem: Signs placed with 'foldcolumn' set don't show up after filler lines. Solution: Take filler lines into account. (Olaf Dabrunz)
2014-05-22updated for version 7.4.301Bram Moolenaar
Problem: Still a scrolling problem when loading a session file. Solution: Fix off-by-one mistake. (Nobuhiro Takasaki)
2014-05-22updated for version 7.4.300Bram Moolenaar
Problem: The way config.cache is removed doesn't always work. Solution: Always remove config.cache. (Ken Takata)
2014-05-22updated for version 7.4.299Bram Moolenaar
Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty. Solution: Use AC_CACHE_VAL. (Ken Takata)
2014-05-22updated for version 7.4.298Bram Moolenaar
Problem: Can't have a funcref start with "t:". Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira)
2014-05-22updated for version 7.4.297Bram Moolenaar
Problem: Memory leak from result of get_isolated_shell_name(). Solution: Free the memory. (Dominique Pelle)
2014-05-22updated for version 7.4.296Bram Moolenaar
Problem: Can't run tests on Solaris. Solution: Change the way VIMRUNTIME is set. (Laurent Blume)
2014-05-13Update runtime files.Bram Moolenaar
2014-05-13Update translations for changed error message.Bram Moolenaar
2014-05-13updated for version 7.4.295Bram Moolenaar
Problem: Various typos, bad white space and unclear comments. Solution: Fix typos. Improve white space. Update comments.
2014-05-13updated for version 7.4.294Bram Moolenaar
Problem: Test files missing from patch. Solution: Patch the test files.
2014-05-13updated for version 7.4.293Bram Moolenaar
Problem: It is not possible to ignore composing characters at a specific point in a pattern. Solution: Add the %C item.
2014-05-13updated for version 7.4.292Bram Moolenaar
Problem: Searching for "a" does not match accented "a" with new regexp engine, does match with old engine. (David Bürgin) "ca" does not match "ca" with accented "a" with either engine. Solution: Change the old engine, check for following composing character also for single-byte patterns.
2014-05-13updated for version 7.4.291Bram Moolenaar
Problem: Compiler warning for int to pointer of different size when DEBUG is defined. Solution: use smsg() instead of EMSG3().
2014-05-13updated for version 7.4.290Bram Moolenaar
Problem: A non-greedy match followed by a branch is too greedy. (Ingo Karkat) Solution: Add NFA_MATCH when it is already in the state list if the position differs.
2014-05-13updated for version 7.4.289Bram Moolenaar
Problem: Pattern with repeated backreference does not match with new regexp engine. (Urtica Dioica) Solution: Also check the end of a submatch when deciding to put a state in the state list.
2014-05-13updated for version 7.4.288Bram Moolenaar
Problem: When 'spellfile' is set the screen is not redrawn. Solution: Redraw when updating the spelling info. (Christian Brabandt)
2014-05-13updated for version 7.4.287Bram Moolenaar
Problem: Patches for .hgignore don't work, since the file is not in the distribution. Solution: Add .hgignore to the distribution. Will be effective with the next version.
2014-05-13updated for version 7.4.286Bram Moolenaar
Problem: Error messages are inconsistant. (ZyX) Solution: Change "Lists" to "list".
2014-05-13updated for version 7.4.285Bram Moolenaar
Problem: When 'relativenumber' is set and deleting lines or undoing that, line numbers are not always updated. (Robert Arkwright) Solution: (Christian Brabandt)
2014-05-13updated for version 7.4.284Bram Moolenaar
Problem: Setting 'langmap' in the modeline can cause trouble. E.g. mapping ":" breaks many commands. (Jens-Wolfhard Schicke-Uffmann) Solution: Disallow setting 'langmap' from the modeline.
2014-05-09updated for version 7.4.283Bram Moolenaar
Problem: Compiler warning about unused variable. (Charles Cooper) Solution: Move the variable inside the #if block.
2014-05-08updated for version 7.4.282Bram Moolenaar
Problem: Test 97 fails on Mac. Solution: Do not ignore case in file names. (Jun Takimoto)
2014-05-07updated for version 7.4.281Bram Moolenaar
Problem: When a session file has more than one tabpage and 'showtabline' is one the positions may be slightly off. Solution: Set 'showtabline' to two while positioning windows.
2014-05-07updated for version 7.4.280Bram Moolenaar
Problem: When using a session file the relative position of the cursor is not restored if there is another tab. (Nobuhiro Takasaki) Solution: Update w_wrow before calculating the fraction.
2014-05-07updated for version 7.4.279Bram Moolenaar
Problem: globpath() returns a string, making it difficult to get a list of matches. (Greg Novack) Solution: Add an optional argument like with glob(). (Adnan Zafar)
2014-05-07updated for version 7.4.278Bram Moolenaar
Problem: list_remove() conflicts with function defined in Sun header file. Solution: Rename the function. (Richard Palo)
2014-05-07updated for version 7.4.277Bram Moolenaar
Problem: Using ":sign unplace *" may leave the cursor in the wrong position (Christian Brabandt) Solution: Update the cursor position when removing all signs.
2014-05-07updated for version 7.4.276Bram Moolenaar
Problem: The fish shell is not supported. Solution: Use begin/end instead of () for fish. (Andy Russell)
2014-05-07updated for version 7.4.275Bram Moolenaar
Problem: When changing the type of a sign that hasn't been placed ther is no error message. Solution: Add an error message. (Christian Brabandt)
2014-05-02updated for version 7.4.274Bram Moolenaar
Problem: When doing ":update" just before running an external command that changes the file, the timestamp may be unchanged and the file is not reloaded. Solution: Also check the file size.
2014-05-01Runtime file updates.Bram Moolenaar
2014-04-29updated for version 7.4.273Bram Moolenaar
Problem: "make autoconf" and "make reconfig" may first run configure and then remove the output. Solution: Add these targets to the exceptions. (Ken Takata)
2014-04-29updated for version 7.4.272Bram Moolenaar
Problem: Using just "$" does not cause an error message. Solution: Check for empty environment variable name. (Christian Brabandt)
2014-04-29updated for version 7.4.271Bram Moolenaar
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)