summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-04-13More updated runtime files.Bram Moolenaar
2015-04-13patch 7.4.694Bram Moolenaar
Problem: Running tests changes the .viminfo file. Solution: Disable viminfo in the text objects test.
2015-04-13Updated runtime files.Bram Moolenaar
2015-04-13patch 7.4.693Bram Moolenaar
Problem: Session file is not correct when there are multiple tab pages. Solution: Reset the current window number for each tab page. (Jacob Niehus)
2015-04-09patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)Bram Moolenaar
Solution: Remove it.
2015-04-03patch 7.4.691 for Problem: Can't build with MzScheme.Bram Moolenaar
Solution: Change "cwd" into the global variable "start_dir".
2015-04-03patch 7.4.690 for Problem: Memory access errors when changing indent in Ex ↵Bram Moolenaar
mode. Also missing redraw when using CTRL-U. (Knil Ino) Solution: Update pointers after calling ga_grow().
2015-04-03updated for version 7.4.689Bram Moolenaar
Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in different directories does not work. (Axel Bender) Solution: Remember the current directory and use it where needed. (Christian Brabandt)
2015-03-31updated for version 7.4.688Bram Moolenaar
Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly. (Issue 166) Solution: When using the popup menu remove the "$".
2015-03-31updated for version 7.4.687Bram Moolenaar
Problem: There is no way to use a different in Replace mode for a terminal. Solution: Add t_SR. (Omar Sandoval)
2015-03-31updated for version 7.4.686Bram Moolenaar
Problem: "zr" and "zm" do not take a count. Solution: Implement the count, restrict the fold level to the maximum nesting depth. (Marcin Szamotulski)
2015-03-31updated for version 7.4.685Bram Moolenaar
Problem: When there are illegal utf-8 characters the old regexp engine may go past the end of a string. Solution: Only advance to the end of the string. (Dominique Pelle)
2015-03-31updated for version 7.4.684Bram Moolenaar
Problem: When starting several Vim instances in diff mode, the temp files used may not be unique. (Issue 353) Solution: Add an argument to vim_tempname() to keep the file.
2015-03-25updated for version 7.4.683Bram Moolenaar
Problem: Typo in the vimtutor command. Solution: Fix the typo. (Corey Farwell, github pull 349)
2015-03-24updated for version 7.4.682Bram Moolenaar
Problem: The search highlighting and match highlighting replaces the cursorline highlighting, this doesn't look good. Solution: Combine the highlighting. (Yasuhiro Matsumoto)
2015-03-24Add test files for patch 7.4.680.Bram Moolenaar
2015-03-24updated for version 7.4.681Bram Moolenaar
Problem: MS-Windows: When Vim is minimized the window height is computed incorrectly. Solution: When minimized use the previously computed size. (Ingo Karkat)
2015-03-24updated for version 7.4.680Bram Moolenaar
Problem: CTRL-W in Insert mode does not work well for multi-byte characters. Solution: Use mb_get_class(). (Yasuhiro Matsumoto)
2015-03-24updated for version 7.4.679Bram Moolenaar
Problem: Color values greater than 255 cause problems on MS-Windows. Solution: Truncate to 255 colors. (Yasuhiro Matsumoto)
2015-03-24updated for version 7.4.678Bram Moolenaar
Problem: When using --remote the directory may end up being wrong. Solution: Use localdir() to find out what to do. (Xaizek)
2015-03-24updated for version 7.4.677Bram Moolenaar
Problem: Configure fails when specifying a python-config-dir. (Lcd) Solution: Check if PYTHONFRAMEWORKPREFIX is set.
2015-03-24updated for version 7.4.676Bram Moolenaar
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)
2015-03-24updated for version 7.4.675Bram Moolenaar
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)
2015-03-21updated for version 7.4.674Bram Moolenaar
Problem: Missing changes in one file. Solution: Also change the win32 file.
2015-03-21updated for version 7.4.673Bram Moolenaar
Problem: The first syntax entry gets sequence number zero, which doesn't work. (Clinton McKay) Solution: Start at number one. (Bjorn Linse)
2015-03-21Update runtime files.Bram Moolenaar
2015-03-21updated for version 7.4.672Bram Moolenaar
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.
2015-03-21updated for version 7.4.671Bram Moolenaar
Problem: Warning for shadowing a variable. Solution: Rename off to mb_off. (Kazunobu Kuriyama)
2015-03-20updated for version 7.4.670Bram Moolenaar
Problem: Using 'cindent' for Javascript is less than perfect. Solution: Improve indenting of continuation lines. (Hirohito Higashi)
2015-03-20updated for version 7.4.669Bram Moolenaar
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)
2015-03-20updated for version 7.4.668Bram Moolenaar
Problem: Can't use a glob pattern as a regexp pattern. Solution: Add glob2regpat(). (Christian Brabandt)
2015-03-20updated for version 7.4.667Bram Moolenaar
Problem: 'colorcolumn' isn't drawn in a closed fold while 'cursorcolumn' is. (Carlos Pita) Solution: Make it consistent. (Christian Brabandt)
2015-03-20updated for version 7.4.666Bram Moolenaar
Problem: There is a chance that Vim may lock up. Solution: Handle timer events differently. (Aaron Burrow)
2015-03-20updated for version 7.4.665Bram Moolenaar
Problem: 'linebreak' does not work properly with multi-byte characters. Solution: Compute the pointer offset with mb_head_off(). (Yasuhiro Matsumoto)
2015-03-20updated for version 7.4.664Bram Moolenaar
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)
2015-03-14updated for version 7.4.663Bram Moolenaar
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)
2015-03-13updated for version 7.4.662Bram Moolenaar
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)
2015-03-13updated for version 7.4.661Bram Moolenaar
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)
2015-03-13updated for version 7.4.660Bram Moolenaar
Problem: Using freed memory when g:colors_name is changed in the colors script. (oni-link) Solution: Make a copy of the variable value.
2015-03-13updated for version 7.4.659Bram Moolenaar
Problem: When 'ruler' is set the preferred column is reset. (Issue 339) Solution: Don't set curswant when redrawing the status lines.
2015-03-08updated for version 7.4.658Bram Moolenaar
Problem: 'formatexpr' is evaluated too often. Solution: Only invoke it when beyond the 'textwidth' column, as it is documented. (James McCoy)
2015-03-06updated for version 7.4.657Bram Moolenaar
Problem: Compiler warnings for pointer mismatch. Solution: Add a typecast. (John Marriott)
2015-03-05updated for version 7.4.656Bram Moolenaar
Problem: Missing changes for glob() in one file. Solution: Add the missing changes.
2015-03-05updated for version 7.4.655Bram Moolenaar
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)
2015-03-05updated for version 7.4.654Bram Moolenaar
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().
2015-03-05updated for version 7.4.653Bram Moolenaar
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)
2015-03-05updated for version 7.4.652Bram Moolenaar
Problem: Xxd lacks a few features. Solution: Use 8 characters for the file position. Add the -e and -o arguments. (Vadim Vygonets)
2015-03-05updated for version 7.4.651Bram Moolenaar
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)
2015-03-05updated for version 7.4.650Bram Moolenaar
Problem: Configure check may fail because the dl library is not used. Solution: Put "-ldl" in LIBS rather than LDFLAGS. (Oazki Kiichi)
2015-03-05updated for version 7.4.649Bram Moolenaar
Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void).