summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2012-08-29updated for version 7.3.641v7.3.641Bram Moolenaar
Problem: ":mkview" uses ":normal" instead of ":normal!" for folds. (Dan) Solution: Add the bang. (Christian Brabandt)
2012-08-29updated for version 7.3.640v7.3.640Bram Moolenaar
Problem: It's not easy to build Vim on Windows with XPM support. Solution: Binary files for 7.3.639. (Sergey Khorev)
2012-08-29updated for version 7.3.639v7.3.639Bram Moolenaar
Problem: It's not easy to build Vim on Windows with XPM support. Solution: Include the required files, they are quite small. Update the MSVC makefile to use them. Binary files are in the next patch. (Sergey Khorev)
2012-08-23Fix version.c, 638 was there twice.Bram Moolenaar
2012-08-23updated for version 7.3.638v7.3.638Bram Moolenaar
2012-08-23updated for version 7.3.637v7.3.637Bram Moolenaar
Problem: Cannot catch the error caused by a foldopen when there is no fold. (ZyX, Issue 48) Solution: Do not break out of the loop early when inside try/catch. (Christian Brabandt) Except when there is a syntax error.
2012-08-23updated for version 7.3.636v7.3.636Bram Moolenaar
Problem: Not all zero-width matches handled correctly for "gn". Solution: Move zero-width detection to a separate function. (Christian Brabandt)
2012-08-23updated for version 7.3.635v7.3.635Bram Moolenaar
Problem: Issue 21: System call during startup sets 'lines' to a wrong value. (Karl Yngve) Solution: Don't set the shell size while the GUI is still starting up. (Christian Brabandt)
2012-08-23updated for version 7.3.634v7.3.634Bram Moolenaar
Problem: Month/Day format for undo is confusing. (Marcin Szamotulski) Solution: Always use Year/Month/Day, should work for everybody.
2012-08-15Update runtime files.Bram Moolenaar
2012-08-15updated for version 7.3.633v7.3.633Bram Moolenaar
Problem: Selection remains displayed as selected after selecting another text. Solution: Call xterm_update() before select(). (Andrew Pimlott)
2012-08-15updated for version 7.3.632v7.3.632Bram Moolenaar
Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
2012-08-15updated for version 7.3.631v7.3.631Bram Moolenaar
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
2012-08-15updated for version 7.3.630v7.3.630Bram Moolenaar
Problem: "|" does not behave correctly when 'virtualedit' is set. Solution: Call validate_virtcol(). (David Bürgin)
2012-08-08updated for version 7.3.629v7.3.629Bram Moolenaar
Problem: There is no way to make 'shiftwidth' follow 'tabstop'. Solution: When 'shiftwidth' is zero use the value of 'tabstop'. (Christian Brabandt)
2012-08-08updated for version 7.3.628v7.3.628Bram Moolenaar
Problem: ":open" does not allow for a !, which results in a confusing error message. (Shawn Wilson) Solution: Allow ! on ":open". (Christian Brabandt)
2012-08-08updated for version 7.3.627v7.3.627Bram Moolenaar
Problem: When using the "n" flag with the ":s" command a \= substitution will not be evaluated. Solution: Do perform the evaluation, so that a function can be invoked at every matching position without changing the text. (Christian Brabandt)
2012-08-08updated for version 7.3.626v7.3.626Bram Moolenaar
Problem: Python interface doesn't build with Python 2.4 or older. Solution: Define Py_ssize_t. (Benjamin Bannier)
2012-08-08updated for version 7.3.625v7.3.625Bram Moolenaar
Problem: "gn" does not handle zero-width matches correctly. Solution: Handle zero-width patterns specially. (Christian Brabandt)
2012-08-08updated for version 7.3.624v7.3.624Bram Moolenaar
Problem: When cancelling input() it returns the third argument. That should only happen for inputdialog(). Solution: Check if inputdialog() was used. (Hirohito Higashi)
2012-08-08updated for version 7.3.623v7.3.623Bram Moolenaar
Problem: Perl 5.14 commands crash Vim on MS-Windows. Solution: Use perl_get_sv() instead of GvSV(). (Raymond Ko)
2012-08-02updated for version 7.3.622v7.3.622Bram Moolenaar
Problem: XPM library for Win32 can't be found. Solution: Suggest using the one from the Vim ftp site.
2012-08-02updated for version 7.3.621v7.3.621Bram Moolenaar
Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
2012-08-02updated for version 7.3.620v7.3.620Bram Moolenaar
Problem: Building with recent Ruby on Win32 doesn't work. Solution: Add a separate argument for the API version. (Yasuhiro Matsumoto)
2012-08-02updated for version 7.3.619v7.3.619Bram Moolenaar
Problem: When executing a shell command Vim may become slow to respond. Solution: Don't wait after every processed message. (idea by Yasuhiro Matsumoto)
2012-07-29updated for version 7.3.618v7.3.618Bram Moolenaar
Problem: Still doesn't compile with small features. Solution: Move current_search() out of #ifdef. (Dominique Pelle)
2012-07-27updated for version 7.3.617v7.3.617Bram Moolenaar
Problem: Hang on completion. Solution: Skip over the space. (Yasuhiro Matsumoto)
2012-07-27updated for version 7.3.616v7.3.616Bram Moolenaar
Problem: Can't compile without +visual. Solution: Add #ifdef.
2012-07-25Updated runtime files.Bram Moolenaar
2012-07-25updated for version 7.3.615v7.3.615Bram Moolenaar
Problem: Completion for a user command does not recognize backslash before a space. Solution: Recognize escaped characters. (Yasuhiro Matsumoto)
2012-07-25updated for version 7.3.614v7.3.614Bram Moolenaar
Problem: Number argument gets turned into a number while it should be a string. Solution: Add flag to the call_vim_function() call. (Yasuhiro Matsumoto)
2012-07-25updated for version 7.3.613v7.3.613Bram Moolenaar
Problem: Including Python's config.c in the build causes trouble. It is not clear why it was there. Solution: Omit the config file. (James McCoy)
2012-07-25updated for version 7.3.612v7.3.612Bram Moolenaar
Problem: Auto formatting messes up text when 'fo' contains "2". (ZyX) Solution: Decrement "less_cols". (Tor Perkins)
2012-07-25updated for version 7.3.611v7.3.611Bram Moolenaar
Problem: Can't use Vim dictionary as self argument in Python. Solution: Fix the check for the "self" argument. (ZyX)
2012-07-25updated for version 7.3.610v7.3.610Bram Moolenaar
Problem: Cannot operate on the text that a search pattern matches. Solution: Add the "gn" and "gN" commands. (Christian Brabandt)
2012-07-25updated for version 7.3.609v7.3.609Bram Moolenaar
Problem: File names in :checkpath! output are garbled. Solution: Check for \zs in the pattern. (Lech Lorens)
2012-07-19updated for version 7.3.608v7.3.608Bram Moolenaar
Problem: winrestview() does not always restore the view correctly. Solution: Call win_new_height() and win_new_width(). (Lech Lorens)
2012-07-19updated for version 7.3.607v7.3.607Bram Moolenaar
Problem: With an 8 color terminal the selected menu item is black on black, because darkGrey as bg is the same as black. Solution: Swap fg and bg colors. (James McCoy)
2012-07-19updated for version 7.3.606v7.3.606Bram Moolenaar
Problem: CTRL-P completion has a problem with multi-byte characters. Solution: Check for next character being NUL properly. (Yasuhiro Matsumoto)
2012-07-19updated for version 7.3.605v7.3.605Bram Moolenaar
Problem: MS-Windows: Can't compile with older compilers. (Titov Anatoly) Solution: Add #ifdef for MEMORYSTATUSEX.
2012-07-16updated for version 7.3.604v7.3.604Bram Moolenaar
Problem: inputdialog() doesn't use the cancel argument in the console. (David Fishburn) Solution: Use the third argument. (Christian Brabant)
2012-07-16updated for version 7.3.603v7.3.603Bram Moolenaar
Problem: It is possible to add replace builtin functions by calling extend() on g:. Solution: Add a flag to a dict to indicate it is a scope. Check for existing functions. (ZyX)
2012-07-16updated for version 7.3.602v7.3.602Bram Moolenaar
Problem: Missing files in distribution. Solution: Update the list of files.
2012-07-16updated for version 7.3.601v7.3.601Bram Moolenaar
Problem: Bad code style. Solution: Insert space, remove parens.
2012-07-12Updated runtime files.Bram Moolenaar
2012-07-10updated for version 7.3.600v7.3.600Bram Moolenaar
Problem: <f-args> is not expanded properly with DBCS encoding. Solution: Skip over character instead of byte. (Yukihiro Nakadaira)
2012-07-10updated for version 7.3.599v7.3.599Bram Moolenaar
Problem: Missing change in one file. Solution: Patch for changed clip_autoselect().
2012-07-10updated for version 7.3.598v7.3.598Bram Moolenaar
Problem: Cannot act upon end of completion. (Taro Muraoka) Solution: Add an autocommand event that is triggered when completion has finished. (Idea by Florian Klein)
2012-07-10updated for version 7.3.597v7.3.597Bram Moolenaar
Problem: 'clipboard' "autoselect" only applies to the * register. (Sergey Vakulenko) Solution: Make 'autoselect' work for the + register. (Christian Brabant) Add the "autoselectplus" option in 'clipboard' and the "P" flag in 'guioptions'.
2012-07-10updated for version 7.3.596v7.3.596Bram Moolenaar
Problem: Can't remove all signs for a file or buffer. Solution: Support "*" for the sign id. (Christian Brabandt)