- Oct 21, 2012
-
-
Bram Moolenaar authored
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
-
Bram Moolenaar authored
Problem: Filler lines above the first line may be hidden when opening Vim. Solution: Change how topfill is computed. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Problems loading a library for a file name with non-latin characters. Solution: Use wide system functions when possible. (Ken Takata)
-
Bram Moolenaar authored
Problem: Can't build Motif version. Solution: Fix wrongly named variable. (Ike Devolder)
-
Bram Moolenaar authored
Problem: Mouse features are not sorted properly. (Tony Mechelynck) Solution: Put the mouse features in alphabetical order.
-
Bram Moolenaar authored
Problem: Repeating "cgn" does not always work correctly. Solution: Also fetch the operator character. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When 'undofile' is reset the hash is computed unnecessarily. Solution: Only compute the hash when the option was set. (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Nmake from VS6 service pack 6 is not recognized. Solution: Detect the version number. (Jiri Sedlak)
-
Bram Moolenaar authored
Problem: MS-Windows: Crash with stack overflow when setting 'encoding'. Solution: Handle that loading the iconv library may be called recursively. (Jiri Sedlak)
-
Bram Moolenaar authored
Problem: Cannot detect URXVT and SGR mouse support. Solution: add +mouse_urxvt and +mouse_sgr. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: When 'ttymouse' is set to "sgr" manually, it is overruled by automatic detection. Solution: Do not use automatic detection when 'ttymouse' was set manually. (Hayaki Saito)
-
- Oct 20, 2012
-
-
Bram Moolenaar authored
Problem: Python 3 does not preserve state beween commands. Solution: Preserve the state. (Paul Ollis)
-
Bram Moolenaar authored
Problem: Leaking resources when setting GUI font. Solution: Free the font. (Ken Takata)
-
Bram Moolenaar authored
Problem: Message about added spell language can be wrong. Solution: Give correct message. Add g:menutrans_set_lang_to to allow for translation. (Jiri Sedlak)
-
Bram Moolenaar authored
Problem: Balloon cannot show multi-byte text. Solution: Properly deal with multi-byte characters. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Now that 'shiftwidth' may use the value of 'tabstop' it is not so easy to use in indent files. Solution: Add the shiftwidth() function. (so8res)
-
Bram Moolenaar authored
Problem: Can't make 'softtabstop' follow 'shiftwidth'. Solution: When 'softtabstop' is negative use the value of 'shiftwidth'. (so8res)
-
- Oct 18, 2012
-
-
Bram Moolenaar authored
Problem: Can't build GTK version with GTK 2.0. Solution: Put GtkFileFilter declaration in the right place. (Yegappan Lakshmanan)
-
- Oct 14, 2012
-
-
Bram Moolenaar authored
Problem: State specific to the Python thread is discarded. Solution: Keep state between threads. (Paul)
-
Bram Moolenaar authored
Problem: When the current directory name is exactly the maximum path length Vim may crash. Solution: Only add "/" when there is room. (Danek Duvall)
-
Bram Moolenaar authored
Problem: MzScheme and Lua may use a NULL string. Solution: Use an empty string instead of NULL. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Python 3.3 is not supported. Solution: Add Python 3.3 support (Ken Takata)
-
- Oct 11, 2012
-
-
Bram Moolenaar authored
Problem: Test 16 fails when $DISPLAY is not set. Solution: Skip the test when $DISPLAY is not set.
-
Bram Moolenaar authored
Problem: Using CTRL-\ e mappings is useful also when entering an expression, but it doesn't work. (Marcin Szamotulski) Solution: Allow using CTRL-\ e when entering an expression if it was not typed.
-
Bram Moolenaar authored
Problem: No test for what patch 7.3.673 fixes. Solution: Add a test. (Christian Brabandt)
-
- Oct 06, 2012
-
-
Bram Moolenaar authored
Problem: "make test" does not delete lua.vim. Solution: Add lua.vim to the clean target. (Simon Ruderich)
-
- Oct 05, 2012
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":python" may crash when vimbindeval() returns None. Solution: Check for v_string to be NULL. (Yukihiro Nakadaira)
-
- Oct 04, 2012
-
-
Bram Moolenaar authored
Problem: Compiler complains about incompatible types. Solution: Remove type casts. (hint by Danek Duvall)
-
- Oct 03, 2012
-
-
Bram Moolenaar authored
Problem: List of distributed files picks up backup files. Solution: Make tutor patterns more specific.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Some files missing in the list of distributed files. Solution: Add lines for new files.
-
Bram Moolenaar authored
Problem: Ruby detection uses Config, newer Ruby versions use RbConfig. Solution: Detect the need to use RbConfig. (Vit Ondruch)
-
Bram Moolenaar authored
Problem: Ruby .so name may not be correct. Solution: Use the LIBRUBY_SO entry from the config. (Vit Ondruch)
-
Bram Moolenaar authored
Problem: buf_spname() is used inconsistently. Solution: Make the return type a char_u pointer. Check the size of the returned string.
-
Bram Moolenaar authored
Problem: Ruby compilation on Windows 32 bit doesn't work. Solution: Only use some functions for 64 bit. (Ken Takata)
-
Bram Moolenaar authored
Problem: Using uninitialized memory with very long file name. Solution: Put NUL after text when it is truncated. (ZyX)
-
Bram Moolenaar authored
Problem: Can't compile with Lua/dyn on Cygwin. Solution: Adjust configure to use the right library name. (Ken Takata)
-
Bram Moolenaar authored
Problem: Using "gN" while 'selection' is "exclusive" misses one character. (Ben Fritz) Solution: Check the direction when compensating for exclusive selection. (Christian Brabandt)
-