summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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)
2012-06-29updated for version 7.3.572Bram Moolenaar
Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO.
2012-06-29updated for version 7.3.571Bram Moolenaar
Problem: Duplicated condition. Solution: Remove one. (Dominique Pelle)
2012-06-29updated for version 7.3.570Bram Moolenaar
Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
2012-06-29updated for version 7.3.569Bram Moolenaar
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
2012-06-29updated for version 7.3.568Bram Moolenaar
Problem: Bad indents for #ifdefs. Solution: Add and remove spaces. (Elias Diem)
2012-06-29updated for version 7.3.567Bram Moolenaar
Problem: Missing copyright notice. Solution: Add Vim copyright notice. (Taro Muraoka)
2012-06-20updated for version 7.3.566Bram Moolenaar
Problem: Redo after completion does not work correctly when refresh: always is not used. (Raymond Ko) Solution: Check the compl_opt_refresh_always flag. (Christian Brabandt)
2012-06-20updated for version 7.3.565Bram Moolenaar
Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS.
2012-06-20updated for version 7.3.564Bram Moolenaar
Problem: Warning for pointer conversion. Solution: Add type cast.
2012-06-20updated for version 7.3.563Bram Moolenaar
Problem: Can't build with tiny features. Solution: Add #ifdef.
2012-06-20updated for version 7.3.562Bram Moolenaar
Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto)
2012-06-20updated for version 7.3.561Bram Moolenaar
Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer. (Yasuhiro Matsumoto)
2012-06-20updated for version 7.3.560Bram Moolenaar
Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira)
2012-06-20updated for version 7.3.559Bram Moolenaar
Problem: home_replace() does not work with 8.3 filename. Solution: Make ":p" expand 8.3 name to full path. (Yasuhiro Matsumoto)
2012-06-20updated for version 7.3.558Bram Moolenaar
Problem: Memory access error. (Gary Johnson) Solution: Allocate one more byte. (Dominique Pelle)
2012-06-20updated for version 7.3.557Bram Moolenaar
Problem: Crash when an autocommand wipes out a buffer when it is hidden. Solution: Restore the current window when needed. (Christian Brabandt)
2012-06-14updated for version 7.3.556Bram Moolenaar
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
2012-06-13updated for version 7.3.555Bram Moolenaar
Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy)