- Jul 01, 2013
-
-
Bram Moolenaar authored
Problem: Python SystemExit exception is not handled properly. Solution: Catch the exception and give an error. (Yasuhiro Matsumoto, Ken Takata)
-
Bram Moolenaar authored
Problem: Check for screen size missing for Athena and Motif. Solution: Add call to limit_screen_size().
-
Bram Moolenaar authored
Problem: No tests for picking a window when selecting an entry in a location list. Not picking the right window sometimes. Solution: Add test 96. Set usable_win appropriately. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Compiler warnings in MS-Windows clipboard handling. Solution: Add type casts. (Ken Takata)
-
Bram Moolenaar authored
Problem: Test 71 fails on MS-Windows. Solution: Put the binary data in a separate file. (Ken Takata)
-
Bram Moolenaar authored
Problem: 'cursorline' not drawn in any other window. (Charles Campbell) Solution: Do draw the cursor line in other windows.
-
Bram Moolenaar authored
Problem: When 'ttymouse' is set to "xterm2" clicking in column 123 moves the cursor to column 96. (Kevin Goodsell) Solution: Decode KE_CSI.
-
- Jun 30, 2013
-
-
Bram Moolenaar authored
Problem: Reading memory already freed since patch 7.3.1247. (Simon Ruderich, Dominique Pelle) Solution: Copy submatches before reallocating the state list.
-
Bram Moolenaar authored
Problem: Compiler warning for variable uninitialized. (Tony Mechelynck) Solution: Add an init.
-
Bram Moolenaar authored
Problem: When someone sets the screen size to a huge value with "stty" Vim runs out of memory before reducing the size. Solution: Limit Rows and Columns in more places.
-
Bram Moolenaar authored
Problem: In diff mode 'cursorline' also draws in the non-active window. When 'nu' and 'sbr' are set the 'sbr' string is not underlined. Solution: Only draw the cursor line in the current window. Combine the 'cursorline' and other highlighting attributes. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When using a cscope connection resizing the window may send SIGWINCH to cscope and it quits. Solution: Call setpgid(0, 0) in the child process. (Narendran Gopalakrishnan)
-
Bram Moolenaar authored
Problem: "gn" does not work when the match is a single character. Solution: Fix it, add a test. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When selecting an entry from a location list it may pick an arbitrary window or open a new one. Solution: Prefer using a window related to the location list. (Lech Lorens)
-
Bram Moolenaar authored
Problem: When copying a location list the index might be wrong. Solution: Set the index to one when using the first entry. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Crash when editing Ruby file. (Aliaksandr Rahalevich) Solution: Reallocate the state list when necessary.
-
Bram Moolenaar authored
Problem: Command line completion does not work. Solution: Move setting xp_line down. (Daniel Thau)
-
- Jun 29, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Using "Vp" in an empty buffer can't be undone. (Hauke Petersen) Solution: Save one line in an empty buffer. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Insert completion keeps entry selected even though the list has changed. (Olivier Teuliere) Solution: Reset compl_shown_match and compl_curr_match. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ACL support doesn't work when when compiled with MingW. Solution: Support ACL on MingW. (Ken Takata)
-
Bram Moolenaar authored
Problem: MS-Windows ACL support doesn't work well. Solution: Implement more ACL support. (Ken Takata)
-
Bram Moolenaar authored
Problem: QNX: GUI fails to start. Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
-
Bram Moolenaar authored
Problem: Accepting "Vim:" for a modeline causes errors too often. Solution: Require "Vim:" to be followed by "set".
-
Bram Moolenaar authored
Problem: Missing m_nowait. Solution: Include missing part of the patch.
-
Bram Moolenaar authored
Problem: Typo in short option name. Solution: Change "imse" to "imsf".
-
Bram Moolenaar authored
Problem: Crash and compilation warnings with Cygwin. Solution: Check return value of XmbTextListToTextProperty(). Add type casts. Adjust #ifdefs. (Lech Lorens)
-
Bram Moolenaar authored
Problem: A buffer-local language mapping from a keymap stops a global insert mode mapping from working. (Ron Aaron) Solution: Do not wait for more characters to be typed only when the mapping was defined with <nowait>.
-
Bram Moolenaar authored
Problem: User completion does not get the whole command line in the command line window. Solution: Pass on the whole command line. (Daniel Thau)
-
Bram Moolenaar authored
Problem: No test for patch 7.3.1258 Solution: Add a test entry.
-
- Jun 28, 2013
-
-
Bram Moolenaar authored
Problem: Using submatch() may crash Vim. (Ingo Karkat) Solution: Restore the number of subexpressions used.
-
Bram Moolenaar authored
Problem: With GNU gettext() ":lang de_DE.utf8" does not always result in German messages. Solution: Clear the $LANGUAGE environment variable.
-
Bram Moolenaar authored
Problem: Can't build without eval or autocmd feature. Solution: Add #ifdefs.
-
Bram Moolenaar authored
-
- Jun 27, 2013
-
-
Bram Moolenaar authored
Problem: Clang warnings when building with Athena. Solution: Add type casts. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Can't build without the multi-lang feature. (John Marriott) Solution: Add #ifdef.
-
Bram Moolenaar authored
Problem: Still undo problem after using CTRL-R = setline(). (Hirohito Higashi) Solution: Set the ins_need_undo flag.
-
Bram Moolenaar authored
Problem: Gvim does not find the toolbar bitmap files in ~/vimfiles/bitmaps if the corresponding menu command contains additional characters like the shortcut marker '&' or if you use a non-english locale. Solution: Use menu->en_dname or menu->dname. (Martin Gieseking)
-
- Jun 26, 2013
-
-
Bram Moolenaar authored
Problem: Test 61 messes up viminfo. Solution: Specify a separate viminfo file.
-
Bram Moolenaar authored
Problem: Python tests fail on MS-Windows. Solution: Change backslashes to slashes. (Taro Muraoka)
-