- 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)
-
Bram Moolenaar authored
Problem: Using refresh: always in a complete function breaks the "." command. (Val Markovic) Solution: Add match leader to the redo buffer. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Get an error for a locked argument in extend(). Solution: Initialize the lock flag for a dictionary. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: home_replace() does not work with 8.3 filename. Solution: Make ":p" expand 8.3 name to full path. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Memory access error. (Gary Johnson) Solution: Allocate one more byte. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Crash when an autocommand wipes out a buffer when it is hidden. Solution: Restore the current window when needed. (Christian Brabandt)
-
- Jun 14, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
-
- Jun 13, 2012
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
-
Bram Moolenaar authored
Problem: With double-width characters and 'listchars' containing "precedes" the text is displayed one cell off. Solution: Check for double-width character being overwritten by the "precedes" character. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
-
Bram Moolenaar authored
Problem: When using :tablose a TabEnter autocommand is triggered too early. (Karthick) Solution: Don't trigger *Enter autocommands before closing the tab. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens)
-
Bram Moolenaar authored
Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens)
-
- Jun 07, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
-
- Jun 06, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. Solution: Initialize it.
-
Bram Moolenaar authored
Problem: Bogus line break. Solution: Remove the line break.
-
Bram Moolenaar authored
Problem: When closing a window or buffer autocommands may close it too, causing problems for where the autocommand was invoked from. Solution: Add the w_closing and b_closing flags. When set disallow ":q" and ":close" to prevent recursive closing.
-