- May 28, 2014
-
-
Bram Moolenaar authored
Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos().
-
Bram Moolenaar authored
Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski)
-
Bram Moolenaar authored
Problem: Can't use winrestview to only restore part of the view. Solution: Handle missing items in the dict. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: When using ":diffsplit" on an empty file the cursor is displayed on the command line. Solution: Limit the value of w_topfill.
-
- May 22, 2014
-
-
Bram Moolenaar authored
Problem: Can't build without the +termresponse feature. Solution: Add proper #ifdefs.
-
Bram Moolenaar authored
Problem: getchar(0) does not return Esc. Solution: Do not wait for an Esc sequence to be complete. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Cannot always use Python with Vim. Solution: Add the manifest to the executable. (Jacques Germishuys)
-
Bram Moolenaar authored
Problem: When using double-width characters the text displayed on the command line is sometimes truncated. Solution: Reset the string lenght. (Nobuhiro Takasaki)
-
Bram Moolenaar authored
Problem: Signs placed with 'foldcolumn' set don't show up after filler lines. Solution: Take filler lines into account. (Olaf Dabrunz)
-
Bram Moolenaar authored
Problem: Still a scrolling problem when loading a session file. Solution: Fix off-by-one mistake. (Nobuhiro Takasaki)
-
Bram Moolenaar authored
Problem: The way config.cache is removed doesn't always work. Solution: Always remove config.cache. (Ken Takata)
-
Bram Moolenaar authored
Problem: When running configure twice DYNAMIC_PYTHON_DLL may become empty. Solution: Use AC_CACHE_VAL. (Ken Takata)
-
Bram Moolenaar authored
Problem: Can't have a funcref start with "t:". Solution: Add "t" to the list of accepted names. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Memory leak from result of get_isolated_shell_name(). Solution: Free the memory. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Can't run tests on Solaris. Solution: Change the way VIMRUNTIME is set. (Laurent Blume)
-
- May 13, 2014
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Various typos, bad white space and unclear comments. Solution: Fix typos. Improve white space. Update comments.
-
Bram Moolenaar authored
Problem: Test files missing from patch. Solution: Patch the test files.
-
Bram Moolenaar authored
Problem: It is not possible to ignore composing characters at a specific point in a pattern. Solution: Add the %C item.
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Compiler warning for int to pointer of different size when DEBUG is defined. Solution: use smsg() instead of EMSG3().
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: When 'spellfile' is set the screen is not redrawn. Solution: Redraw when updating the spelling info. (Christian Brabandt)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Error messages are inconsistant. (ZyX) Solution: Change "Lists" to "list".
-
Bram Moolenaar authored
Problem: When 'relativenumber' is set and deleting lines or undoing that, line numbers are not always updated. (Robert Arkwright) Solution: (Christian Brabandt)
-
Bram Moolenaar authored
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.
-
- May 09, 2014
-
-
Bram Moolenaar authored
Problem: Compiler warning about unused variable. (Charles Cooper) Solution: Move the variable inside the #if block.
-
- May 08, 2014
-
-
Bram Moolenaar authored
Problem: Test 97 fails on Mac. Solution: Do not ignore case in file names. (Jun Takimoto)
-
- May 07, 2014
-
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: list_remove() conflicts with function defined in Sun header file. Solution: Rename the function. (Richard Palo)
-
Bram Moolenaar authored
Problem: Using ":sign unplace *" may leave the cursor in the wrong position (Christian Brabandt) Solution: Update the cursor position when removing all signs.
-