- Jul 06, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Test 87 fails with Python 3.3. Solution: Filter the error messages. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: :py and :py3 don't work when compiled with Cygwin or MingW with 64 bit. Solution: Add -DMS_WIN64 to the build command. (Ken Takata)
-
Bram Moolenaar authored
Problem: Not giving correct error messages for SystemExit(). Solution: Move E858 into an else. (Ken Takata)
-
- Jul 05, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Compiler warnings on Cygwin. Solution: Add type casts. Add windows include files. (Ken Takata)
-
Bram Moolenaar authored
Problem: Typos in nsis script. Can use better compression. Solution: Fix typos. Use lzma compression. (Ken Takata)
-
Bram Moolenaar authored
Problem: When a script defines a function the flag to wait for the user to hit enter is reset. Solution: Restore the flag. (Yasuhiro Matsumoto) Except when the user was typing the function.
-
- Jul 04, 2013
-
-
Bram Moolenaar authored
Problem: Typos in MS-Windows build settings and README. Solution: Minor changes to MS-Windows files.
-
Bram Moolenaar authored
Problem: MS-Windows build instructions are outdated. Solution: Adjust for building on Windows 7. Drop Windows 95/98/ME support.
-
Bram Moolenaar authored
Problem: When redrawing the screen during startup the intro message may be cleared. Solution: Redisplay the intro message when appropriate.
-
Bram Moolenaar authored
Problem: Warnings from 64 bit compiler. Solution: Add type casts.
-
Bram Moolenaar authored
Problem: Test 89 still fails on MS-Windows. Solution: Set 'shellslash'. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: Undo is synced whenever CTRL-R = is called, breaking some plugins. Solution: Only break undo when calling setline() or append().
-
- Jul 03, 2013
-
-
Bram Moolenaar authored
Problem: Test 17 fails on MS-Windows. Includes line break in file name everywhere. Solution: Fix 'fileformat'. Omit CR-LF from a line read from an included file.
-
Bram Moolenaar authored
Problem: Some tests fail on MS-Windows. Solution: Fix path separators in test 89 and 96. Omit test 97, escaping works differently. Make findfile() work on MS-Windows.
-
Bram Moolenaar authored
Problem: Mac: tiny and small build fails. Solution: Don't include os_macosx.m in tiny build. Include mouse support in small build. (Kazunobu Kuriyama)
-
Bram Moolenaar authored
Problem: Errors when doing "make proto". Didn't do "make depend" for a while. Solution: Add #ifdefs. Update dependencies. Update proto files.
-
Bram Moolenaar authored
Problem: Crash. Solution: Use STRCPY() instead of STRCAT() and allocate one more byte.
-
Bram Moolenaar authored
Problem: findfile() directory matching does not work when a star follows text. (Markus Braun) Solution: Make a wildcard work properly. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Only MS-Windows limits the GUI window size to what fits on the monitor. Solution: Limit the size for all systems. (Daniel Harding)
-
Bram Moolenaar authored
Problem: glob() and globpath() do not handle escaped special characters properly. Solution: Handle escaped characters differently. (Adnan Zafar)
-
Bram Moolenaar authored
Problem: ":diffoff" resets options. Solution: Save and restore option values. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Put in empty buffer cannot be undone. Solution: Save one more line for undo. (Ozaki)
-
Bram Moolenaar authored
Problem: Possibly using invalid pointer when searcing for window. (Raichoo) Solution: Use "firstwin" instead of "tp_firstwin" for current tab.
-
Bram Moolenaar authored
Problem: Compiler warnings for uninitialized variables. (Tony Mechelynck) Solution: Initialize the variables.
-
Bram Moolenaar authored
Problem: CTRL-R = in Insert mode changes the start of the insert position. (Ingo Karkat) Solution: Only break undo, don't start a new insert.
-
Bram Moolenaar authored
Problem: Get GLIB warning when removing a menu item. Solution: Reference menu-id and also call gtk_container_remove(). (Ivan Krasilnikov)
-
Bram Moolenaar authored
Problem: The first ":echo 'hello'" command output doesn't show. Mapping for <S-F3> gets triggered during startup. Solution: Add debugging code for the termresponse. When receiving the "Co" entry and when setting 'ambiwidth' redraw right away if possible. Add redraw_asap(). Don't set 'ambiwidth' if it already had the right value. Do the 'ambiwidth' check in the second row to avoid confusion with <S-F3>.
-
- 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)
-