- 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'.
-
Bram Moolenaar authored
Problem: Can't remove all signs for a file or buffer. Solution: Support "*" for the sign id. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The X command server responds slowly Solution: Change the loop that waits for replies. (Brian Burns)
-
Bram Moolenaar authored
Problem: The X command server doesn't work perfectly. It sends an empty reply for as-keys requests. Solution: Remove duplicate ga_init2(). Do not send a reply for as-keys requests. (Brian Burns)
-
Bram Moolenaar authored
Problem: No easy way to decide if b:browsefilter will work. Solution: Add the browsefilter feature.
-
Bram Moolenaar authored
Problem: Vim on GTK does not support g:browsefilter. Solution: Add a GtkFileFilter to the file chooser. (Christian Brabandt)
-
- Jul 06, 2012
-
-
Bram Moolenaar authored
Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
-
Bram Moolenaar authored
Problem: The '< and '> marks cannot be set directly. Solution: Allow setting '< and '>. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash when $HOME is not set. Solution: Check for a NULL pointer. (Chris Webb)
-
Bram Moolenaar authored
Problem: Crash on NULL pointer. Solution: Fix the immediate problem by checking for NULL. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Compiler warning for local var shadowing global var. Solution: Rename the var and move it to an inner block. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined. Solution: Set the default for WINVER to 0x0500.
-
Bram Moolenaar authored
Problem: Calling changed_bytes() too often. Solution: Move changed_bytes() out of a loop. (Tor Perkins)
-
- Jun 30, 2012
-
-
Bram Moolenaar authored
Problem: PyCObject is not always defined. Solution: Use PyObject instead.
-
Bram Moolenaar authored
Problem: PyObject_NextNotImplemented is not defined before Python 2.7. (Danek Duvall) Solution: Add #ifdefs.
-
- Jun 29, 2012
-
-
Bram Moolenaar authored
Problem: Missing parts of the test OK file. Solution: Add the missing parts.
-
Bram Moolenaar authored
Problem: Problems compiling with Python. Solution: Pick UCS2 or UCS4 function at runtime. (lilydjwg)
-
Bram Moolenaar authored
Problem: Warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: Can't compile with Python 2.5. Solution: Use PyCObject when Capsules are not available.
-
Bram Moolenaar authored
Problem: Misplaced declaration. Solution: Move declaration to start of block.
-