- 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.
-
Bram Moolenaar authored
Problem: Size of memory does not fit in 32 bit unsigned. Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of GlobalMemoryStatus() when available.
-
Bram Moolenaar authored
Problem: Formatting of lists inside comments is not right yet. Solution: Use another solution and add a test. (Tor Perkins)
-
Bram Moolenaar authored
Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Using array index before bounds checking. Solution: Swap the parts of the condition. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Duplicate statement in if and else. (Dominique Pelle) Solution: Remove the condition and add a TODO.
-
Bram Moolenaar authored
Problem: Duplicated condition. Solution: Remove one. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: ":vimgrep" does not obey 'wildignore'. Solution: Apply 'wildignore' and 'suffixes' to ":vimgrep". (Ingo Karkat)
-
Bram Moolenaar authored
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
-
Bram Moolenaar authored
Problem: Bad indents for #ifdefs. Solution: Add and remove spaces. (Elias Diem)
-
Bram Moolenaar authored
Problem: Missing copyright notice. Solution: Add Vim copyright notice. (Taro Muraoka)
-
- Jun 20, 2012
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS.
-
Bram Moolenaar authored
Problem: Warning for pointer conversion. Solution: Add type cast.
-
Bram Moolenaar authored
Problem: Can't build with tiny features. Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: ":profdel" should not work when the +profile feature is disabled. Solution: Call ex_ni(). (Yasuhiro Matsumoto)
-