summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-02updated for version 7.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.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.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.617Bram Moolenaar
Problem: Hang on completion. Solution: Skip over the space. (Yasuhiro Matsumoto)
2012-07-27updated for version 7.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.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.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.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.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.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.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.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.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.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.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.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.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.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.602Bram Moolenaar
Problem: Missing files in distribution. Solution: Update the list of files.
2012-07-16updated for version 7.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.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.599Bram Moolenaar
Problem: Missing change in one file. Solution: Patch for changed clip_autoselect().
2012-07-10updated for version 7.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.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.596Bram Moolenaar
Problem: Can't remove all signs for a file or buffer. Solution: Support "*" for the sign id. (Christian Brabandt)
2012-07-10updated for version 7.3.595Bram Moolenaar
Problem: The X command server responds slowly Solution: Change the loop that waits for replies. (Brian Burns)
2012-07-10updated for version 7.3.594Bram Moolenaar
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)
2012-07-10updated for version 7.3.593Bram Moolenaar
Problem: No easy way to decide if b:browsefilter will work. Solution: Add the browsefilter feature.
2012-07-10updated for version 7.3.592Bram Moolenaar
Problem: Vim on GTK does not support g:browsefilter. Solution: Add a GtkFileFilter to the file chooser. (Christian Brabandt)
2012-07-06updated for version 7.3.591Bram Moolenaar
Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
2012-07-06updated for version 7.3.590Bram Moolenaar
Problem: The '< and '> marks cannot be set directly. Solution: Allow setting '< and '>. (Christian Brabandt)
2012-07-06updated for version 7.3.589Bram Moolenaar
Problem: Crash when $HOME is not set. Solution: Check for a NULL pointer. (Chris Webb)
2012-07-06updated for version 7.3.588Bram Moolenaar
Problem: Crash on NULL pointer. Solution: Fix the immediate problem by checking for NULL. (Lech Lorens)
2012-07-06updated for version 7.3.587Bram Moolenaar
Problem: Compiler warning for local var shadowing global var. Solution: Rename the var and move it to an inner block. (Christian Brabandt)
2012-07-06updated for version 7.3.586Bram Moolenaar
Problem: When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined. Solution: Set the default for WINVER to 0x0500.
2012-07-06updated for version 7.3.585Bram Moolenaar
Problem: Calling changed_bytes() too often. Solution: Move changed_bytes() out of a loop. (Tor Perkins)
2012-06-30updated for version 7.3.584Bram Moolenaar
Problem: PyCObject is not always defined. Solution: Use PyObject instead.
2012-06-30updated for version 7.3.583Bram Moolenaar
Problem: PyObject_NextNotImplemented is not defined before Python 2.7. (Danek Duvall) Solution: Add #ifdefs.
2012-06-29updated for version 7.3.582Bram Moolenaar
Problem: Missing parts of the test OK file. Solution: Add the missing parts.
2012-06-29updated for version 7.3.581Bram Moolenaar
Problem: Problems compiling with Python. Solution: Pick UCS2 or UCS4 function at runtime. (lilydjwg)
2012-06-29updated for version 7.3.580Bram Moolenaar
Problem: Warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
2012-06-29updated for version 7.3.579Bram Moolenaar
Problem: Can't compile with Python 2.5. Solution: Use PyCObject when Capsules are not available.
2012-06-29updated for version 7.3.578Bram Moolenaar
Problem: Misplaced declaration. Solution: Move declaration to start of block.
2012-06-29updated for version 7.3.577Bram Moolenaar
Problem: Size of memory does not fit in 32 bit unsigned. Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of GlobalMemoryStatus() when available.
2012-06-29updated for version 7.3.576Bram Moolenaar
Problem: Formatting of lists inside comments is not right yet. Solution: Use another solution and add a test. (Tor Perkins)
2012-06-29updated for version 7.3.575Bram Moolenaar
Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator.
2012-06-29updated for version 7.3.574Bram Moolenaar
Problem: When pasting a register in the search command line a CTRL-L character is not pasted. (Dominique Pelle) Solution: Escape the CTRL-L. (Christian Brabandt)
2012-06-29updated for version 7.3.573Bram Moolenaar
Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle)