- Aug 29, 2012
-
-
Bram Moolenaar authored
Problem: It's not easy to build Vim on Windows with XPM support. Solution: Binary files for 7.3.639. (Sergey Khorev)
-
Bram Moolenaar authored
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)
-
- Aug 23, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Not all zero-width matches handled correctly for "gn". Solution: Move zero-width detection to a separate function. (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Month/Day format for undo is confusing. (Marcin Szamotulski) Solution: Always use Year/Month/Day, should work for everybody.
-
- Aug 15, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Selection remains displayed as selected after selecting another text. Solution: Call xterm_update() before select(). (Andrew Pimlott)
-
Bram Moolenaar authored
Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: "|" does not behave correctly when 'virtualedit' is set. Solution: Call validate_virtcol(). (David Bürgin)
-
- Aug 08, 2012
-
-
Bram Moolenaar authored
Problem: There is no way to make 'shiftwidth' follow 'tabstop'. Solution: When 'shiftwidth' is zero use the value of 'tabstop'. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ":open" does not allow for a !, which results in a confusing error message. (Shawn Wilson) Solution: Allow ! on ":open". (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Python interface doesn't build with Python 2.4 or older. Solution: Define Py_ssize_t. (Benjamin Bannier)
-
Bram Moolenaar authored
Problem: "gn" does not handle zero-width matches correctly. Solution: Handle zero-width patterns specially. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When cancelling input() it returns the third argument. That should only happen for inputdialog(). Solution: Check if inputdialog() was used. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Perl 5.14 commands crash Vim on MS-Windows. Solution: Use perl_get_sv() instead of GvSV(). (Raymond Ko)
-
- Aug 02, 2012
-
-
Bram Moolenaar authored
Problem: XPM library for Win32 can't be found. Solution: Suggest using the one from the Vim ftp site.
-
Bram Moolenaar authored
Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
-
Bram Moolenaar authored
Problem: Building with recent Ruby on Win32 doesn't work. Solution: Add a separate argument for the API version. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: When executing a shell command Vim may become slow to respond. Solution: Don't wait after every processed message. (idea by Yasuhiro Matsumoto)
-
- Jul 29, 2012
-
-
Bram Moolenaar authored
Problem: Still doesn't compile with small features. Solution: Move current_search() out of #ifdef. (Dominique Pelle)
-
- Jul 27, 2012
-
-
Bram Moolenaar authored
Problem: Hang on completion. Solution: Skip over the space. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Can't compile without +visual. Solution: Add #ifdef.
-
- Jul 25, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Completion for a user command does not recognize backslash before a space. Solution: Recognize escaped characters. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Auto formatting messes up text when 'fo' contains "2". (ZyX) Solution: Decrement "less_cols". (Tor Perkins)
-
Bram Moolenaar authored
Problem: Can't use Vim dictionary as self argument in Python. Solution: Fix the check for the "self" argument. (ZyX)
-
Bram Moolenaar authored
Problem: Cannot operate on the text that a search pattern matches. Solution: Add the "gn" and "gN" commands. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: File names in :checkpath! output are garbled. Solution: Check for \zs in the pattern. (Lech Lorens)
-
- Jul 19, 2012
-
-
Bram Moolenaar authored
Problem: winrestview() does not always restore the view correctly. Solution: Call win_new_height() and win_new_width(). (Lech Lorens)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: CTRL-P completion has a problem with multi-byte characters. Solution: Check for next character being NUL properly. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: MS-Windows: Can't compile with older compilers. (Titov Anatoly) Solution: Add #ifdef for MEMORYSTATUSEX.
-
- Jul 16, 2012
-
-
Bram Moolenaar authored
Problem: inputdialog() doesn't use the cancel argument in the console. (David Fishburn) Solution: Use the third argument. (Christian Brabant)
-