- 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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Missing files in distribution. Solution: Update the list of files.
-
Bram Moolenaar authored
Problem: Bad code style. Solution: Insert space, remove parens.
-
- Jul 12, 2012
-
-
Bram Moolenaar authored
-
- Jul 10, 2012
-
-
Bram Moolenaar authored
Problem: <f-args> is not expanded properly with DBCS encoding. Solution: Skip over character instead of byte. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Missing change in one file. Solution: Patch for changed clip_autoselect().
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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'.
-