- Mar 22, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Python stdout doesn't have a flush() method, causing an import to fail. Solution: Add a dummy flush() method. (Tobias Columbus)
-
Bram Moolenaar authored
Problem: When a key code is not set get a confusing error message. Solution: Change the error message to say the key code is not set.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Crash when drawing the "$" at end-of-line for list mode just after the window border and 'cursorline' is set. Solution: Don't check for 'cursorline'. (Quentin Carbonneaux)
-
Bram Moolenaar authored
Problem: When 'lazyredraw' is set ":ver" output can't be read. Solution: Don't redraw the screen when at a prompt or command line.
-
- Mar 03, 2011
-
-
Bram Moolenaar authored
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov) Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
-
Bram Moolenaar authored
Problem: When 'lazyredraw' is set the screen may not be updated. (Ivan Krasilnikov) Solution: Call update_screen() before waiting for input.
-
Bram Moolenaar authored
Problem: Duplicate include of assert.h. Solution: Remove it.
-
- Feb 25, 2011
-
-
Bram Moolenaar authored
Problem: When there is no previous substitute pattern, the previous search pattern is used. The other way around doesn't work. Solution: When there is no previous search pattern, use the previous substitute pattern if possible. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Drag-n-drop doesn't work in KDE Dolphin. Solution: Add GDK_ACTION_MOVE flag. (Florian Degner)
-
Bram Moolenaar authored
Problem: When using encryption it's not clear what method was used. Solution: In the file message show "blowfish" when using blowfish.
-
Bram Moolenaar authored
Problem: C++ style comments. Solution: Change to C comments.
-
Bram Moolenaar authored
Problem: Including errno.h too often. Solution: Don't include errno.h in Unix header file.
-
Bram Moolenaar authored
Problem: Variable misplaced in #ifdef. Solution: Move clipboard_event_time outside of #ifdef.
-
Bram Moolenaar authored
Problem: Using integer like a boolean. Solution: Nicer check for integer being non-zero.
-
Bram Moolenaar authored
Problem: Another compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf().
-
Bram Moolenaar authored
Problem: Compiler complains about comma. Solution: Remove comma after last enum element.
-
Bram Moolenaar authored
Problem: Compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf().
-
Bram Moolenaar authored
-
- Feb 15, 2011
-
-
Bram Moolenaar authored
Problem: MSVC: Problem with quotes in link argument. Solution: Escape backslashes and quotes. (Weasley)
-
Bram Moolenaar authored
Problem: When writing a file in binary mode it may be missing the final EOL if a file previously read was missing the EOL. (Kevin Goodsell) Solution: Move the write_no_eol_lnum into the buffer struct.
-
Bram Moolenaar authored
Problem: ml_get error when executing register being recorded into, deleting lines and 'conceallevel' is set. (ZyX) Solution: Don't redraw a line for concealing when it doesn't exist.
-
Bram Moolenaar authored
Problem: Having auto/config.mk in the repository causes problems. Solution: Remove auto/config.mk from the distribution. In the toplevel Makefile copy it from the "dist" file.
-
Bram Moolenaar authored
Problem: Complicated 'statusline' causes a crash. (Christian Brabandt) Solution: Check that the number of items is not too big.
-
Bram Moolenaar authored
Problem: The message for an existing swap file is too long to fit in a 25 line terminal. Solution: Make the message shorter. (Chad Miller)
-
- Feb 12, 2011
-
-
Bram Moolenaar authored
Problem: Build problem on Mac. (Nicholas Stallard) Solution: Use "extern" instead of "EXTERN" for p_vfile.
-
- Feb 09, 2011
-
-
Bram Moolenaar authored
Problem: Ruby uses SIGVTALARM which makes Vim exit. (Alec Tica) Solution: Ignore SIGVTALARM. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: On some systems --as-needed does not work, because the "tinfo" library is included indirectly from "ncurses". (Charles Campbell) Solution: In configure prefer using "tinfo" instead of "ncurses".
-
Bram Moolenaar authored
Problem: 'cursorline' is displayed too short when there are concealed characters and 'list' is set. (Dennis Preiser) Solution: Check for 'cursorline' when 'list' is set. (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Vim can crash when tmpnam() returns NULL. Solution: Check for NULL. (Hong Xu)
-
Bram Moolenaar authored
Problem: Potential problem in initialization when giving an error message early. Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
-
Bram Moolenaar authored
Problem: Windows: Fall back directory for creating temp file is wrong. Solution: Use "." instead of empty string. (Hong Xu)
-
- Feb 01, 2011
-
-
Bram Moolenaar authored
Problem: Setting 'statusline' to "%!'asdf%' reads uninitialized memory. Solution: Check for NUL after %.
-
Bram Moolenaar authored
Problem: Executing a :normal command in 'statusline' evaluation causes the cursor to move. (Dominique Pelle) Solution: When updating the cursor for 'cursorbind' allow the cursor beyond the end of the line. When evaluating 'statusline' temporarily reset 'cursorbind'.
-
Bram Moolenaar authored
Problem: The "nbsp" item in 'listchars' isn't used for ":list". Solution: Make it work. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Processing new Esperanto spell file fails and crashes Vim. (Dominique Pelle) Solution: When running out of memory give an error. Handle '?' in COMPOUNDRULE properly.
-
Bram Moolenaar authored
Problem: Useless check for NULL when calling vim_free(). Solution: Remove the check. (Dominique Pelle)
-
- Jan 22, 2011
-
-
Bram Moolenaar authored
Problem: Year number for :undolist can be confused with month or day. Solution: Change "%y" to "%Y".
-