summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-11-05updated for version 7.4.497Bram Moolenaar
Problem: With some regexp patterns the NFA engine uses many states and becomes very slow. To the user it looks like Vim freezes. Solution: When the number of states reaches a limit fall back to the old engine. (Christian Brabandt)
2014-11-05updated for version 7.4.496Bram Moolenaar
Problem: Many lines are both in Make_cyg.mak and Make_ming.mak Solution: Move the common parts to one file. (Ken Takata)
2014-11-05updated for version 7.4.495Bram Moolenaar
Problem: XPM isn't used correctly in the Cygwin Makefile. Solution: Include the rules like in Make_ming.mak. (Ken Takata)
2014-11-05updated for version 7.4.494Bram Moolenaar
Problem: Cursor shape is wrong after a CompleteDone autocommand. Solution: Update the cursor and mouse shape after ":normal" restores the state. (Jacob Niehus)
2014-10-31updated for version 7.4.493Bram Moolenaar
Problem: A TextChanged autocommand is triggered when saving a file. (William Gardner) Solution: Update last_changedtick after calling unchanged(). (Christian Brabandt)
2014-10-31updated for version 7.4.492Bram Moolenaar
Problem: In Insert mode, after inserting a newline that inserts a comment leader, CTRL-O moves to the right. (ZyX) Issue 57. Solution: Correct the condition for moving the cursor back to the NUL. (Christian Brabandt)
2014-10-31updated for version 7.4.491Bram Moolenaar
Problem: When winrestview() has a negative "topline" value there are display errors. Solution: Correct a negative value to 1. (Hirohito Higashi)
2014-10-31updated for version 7.4.490Bram Moolenaar
Problem: Cannot specify the buffer to use for "do" and "dp", making them useless for three-way diff. Solution: Use the count as the buffer number. (James McCoy)
2014-10-31updated for version 7.4.489Bram Moolenaar
Problem: Cursor movement still wrong when 'lbr' is set and there is a number column. (Hirohito Higashi) Solution: Add correction for number column. (Hiroyuki Takagi)
2014-10-22updated for version 7.4.488Bram Moolenaar
Problem: test_mapping fails for some people. Solution: Set the 'encoding' option. (Ken Takata)
2014-10-21Add the missing test files.Bram Moolenaar
2014-10-21updated for version 7.4.487Bram Moolenaar
Problem: ":sign jump" may use another window even though the file is already edited in the current window. Solution: First check if the file is in the current window. (James McCoy)
2014-10-21updated for version 7.4.486Bram Moolenaar
Problem: Check for writing to a yank register is wrong. Solution: Negate the check. (Zyx). Also clean up the #ifdefs.
2014-10-21updated for version 7.4.485Bram Moolenaar
Problem: Abbreviations don't work. (Toothpik) Solution: Move the length computation inside the for loop. Compare against the unescaped key.
2014-10-21updated for version 7.4.484Bram Moolenaar
Problem: Compiler warning on MS-Windows. (Ken Takata) Solution: Add type cast.
2014-10-21updated for version 7.4.483Bram Moolenaar
Problem: A 0x80 byte is not handled correctly in abbreviations. Solution: Unescape special characters. Add a test. (Christian Brabandt)
2014-10-21updated for version 7.4.482Bram Moolenaar
Problem: When 'balloonexpr' results in a list, the text has a trailing newline. (Lcd) Solution: Remove one trailing newline.
2014-10-16updated for version 7.4.481Bram Moolenaar
Problem: Compiler warning on MS-Windows. Solution: Add type casts. (Ken Takata)
2014-10-16updated for version 7.4.480Bram Moolenaar
Problem: MS-Windows: Can't build. Solution: Remove goto, use a flag instead.
2014-10-15Update runtime files and translations.Bram Moolenaar
2014-10-15updated for version 7.4.479Bram Moolenaar
Problem: MS-Windows: The console title can be wrong. Solution: Take the encoding into account. When restoring the title use the right function. (Yasuhiro Matsumoto)
2014-10-15updated for version 7.4.478Bram Moolenaar
Problem: Using byte length instead of character length for 'showbreak'. Solution: Compute the character length. (Marco Hinz)
2014-10-15updated for version 7.4.477Bram Moolenaar
Problem: When using ":%diffput" and the other file is empty an extra empty line remains. Solution: Set the buf_empty flag.
2014-10-15updated for version 7.4.476Bram Moolenaar
Problem: MingW: compiling with "XPM=no" doesn't work. Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken Takata)
2014-10-11updated for version 7.4.475Bram Moolenaar
Problem: Can't compile on a system where Xutf8SetWMProperties() is not in the X11 library. Issue 265. Solution: Add a configure check.
2014-10-11updated for version 7.4.474Bram Moolenaar
Problem: AIX compiler can't handle // comment. Issue 265. Solution: Remove that line.
2014-10-10updated for version 7.4.473Bram Moolenaar
Problem: Cursor movement is incorrect when there is a number column/sign/fold column and 'sbr' is displayed. Solution: Adjust the column for 'sbr'. (Christian Brabandt)
2014-10-10updated for version 7.4.472Bram Moolenaar
Problem: The "precedes" entry in 'listchar' will be drawn when 'showbreak is set and list is not. Solution: Only draw this character when 'list' is on. (Christian Brabandt)
2014-10-09updated for version 7.4.471Bram Moolenaar
Problem: MS-Windows: When printer name contains multi-byte, the name is displayed as ???. Solution: Convert the printer name from the active codepage to 'encoding'. (Yasuhiro Matsumoto)
2014-10-09updated for version 7.4.470Bram Moolenaar
Problem: Test 11 and 100 do not work properly on Windows. Solution: Avoid using feedkeys(). (Ken Takata)
2014-10-09updated for version 7.4.469Bram Moolenaar
Problem: Can't build with MSVC. (Ken Takata) Solution: Move the assignment after the declarations.
2014-10-09updated for version 7.4.468Bram Moolenaar
Problem: Issue 26: CTRL-C does not interrupt after it was mapped and then unmapped. Solution: Reset mapped_ctrl_c. (Christian Brabandt)
2014-10-09updated for version 7.4.467Bram Moolenaar
2014-10-09updated for version 7.4.466Bram Moolenaar
Problem: CTRL-W } does not open preview window. (Erik Falor) Solution: Don't set g_do_tagpreview for CTRL-W }.
2014-10-07updated for version 7.4.465Bram Moolenaar
Problem: Crash when expanding a very long string. Solution: Use wsncpy() instead of wcscpy(). (Ken Takata)
2014-10-06updated for version 7.4.464Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast. (Ken Takata)
2014-09-29updated for version 7.4.463Bram Moolenaar
Problem: Test 86 and 87 may hang on MS-Windows. Solution: Call inputrestore() after inputsave(). (Ken Takata)
2014-09-29updated for version 7.4.462Bram Moolenaar
Problem: Setting the local value of 'backupcopy' empty gives an error. (Peter Mattern) Solution: When using an empty value set the flags to zero. (Hirohito Higashi)
2014-09-27updated for version 7.4.461Bram Moolenaar
Problem: MS-Windows: When collate is on the number of copies is too high. Solution: Only set the collated/uncollated count when collate is on. (Yasuhiro Matsumoto)
2014-09-24updated for version 7.4.460Bram Moolenaar
Problem: Can't build without the quickfix feature. (Erik Falor) Solution: Add a #ifdef.
2014-09-23updated for version 7.4.459Bram Moolenaar
Problem: Can't change the icon after building Vim. Solution: Load the icon from a file on startup. (Yasuhiro Matsumoto)
2014-09-23updated for version 7.4.458Bram Moolenaar
Problem: Issue 252: Cursor moves in a zero-height window. Solution: Check for zero height. (idea by Christian Brabandt)
2014-09-23updated for version 7.4.457Bram Moolenaar
Problem: Using getchar() in an expression mapping may result in K_CURSORHOLD, which can't be recognized. Solution: Add the <CursorHold> key. (Hirohito Higashi)
2014-09-23updated for version 7.4.456Bram Moolenaar
Problem: 'backupcopy' is global, cannot write only some files in a different way. Solution: Make 'backupcopy' global-local. (Christian Brabandt)
2014-09-23updated for version 7.4.455Bram Moolenaar
Problem: Completion for :buf does not use 'wildignorecase'. (Akshay H) Solution: Pass the 'wildignorecase' flag around.
2014-09-23updated for version 7.4.454Bram Moolenaar
Problem: When using a Visual selection of multiple words and doing CTRL-W_] it jumps to the tag matching the word under the cursor, not the selected text. (Patrick hemmer) Solution: Do not reset Visual mode. (idea by Christian Brabandt)
2014-09-19updated for version 7.4.453Bram Moolenaar
Problem: Still can't build with tiny features. Solution: Add #ifdef.
2014-09-19updated for version 7.4.452Bram Moolenaar
Problem: Can't build with tiny features. (Tony Mechelynck) Solution: Use "return" instead of "break".
2014-09-19updated for version 7.4.451Bram Moolenaar
Problem: Calling system() with empty input gives an error for writing the temp file. Solution: Do not try writing if the string length is zero. (Olaf Dabrunz)
2014-09-19updated for version 7.4.450Bram Moolenaar
Problem: Not all commands that edit another buffer support the +cmd argument. Solution: Add the +cmd argument to relevant commands. (Marcin Szamotulski)