- Dec 10, 2010
-
-
Bram Moolenaar authored
-
- Dec 08, 2010
-
-
Bram Moolenaar authored
Problem: Non-printable characters in 'statusline' cause trouble. (ZyX) Solution: Use transstr(). (partly by Caio Ariede)
-
Bram Moolenaar authored
Problem: Spell doesn't work on VMS. Solution: Use different file names. (Zoltan Bartos, Zoltan Arpadffy)
-
Bram Moolenaar authored
Problem: Duplicate lines in makefile. Solution: Remove the lines. (Hong Xu)
-
Bram Moolenaar authored
Problem: Warning for unused variable. Solution: Adjuste #ifdefs.
-
Bram Moolenaar authored
Problem: When updating crypt of swapfile fails there is no error message. (Carlo Teubner) Solution: Add the error message.
-
Bram Moolenaar authored
Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
-
- Dec 02, 2010
-
-
Bram Moolenaar authored
Problem: Missing part of 'wildignorecase' Solution: Also adjust expand()
-
Bram Moolenaar authored
Problem: Can't use the "+ register like "* for yank and put. Solution: Add "unnamedplus" to the 'clipboard' option. (Ivan Krasilnikov)
-
Bram Moolenaar authored
Problem: Double free memory when netbeans command follows DETACH. Solution: Only free the node when owned. (Xavier de Gaye)
-
Bram Moolenaar authored
Problem: Can't complete file names while ignoring case. Solution: Add 'wildignorecase'.
-
Bram Moolenaar authored
Problem: Editing a file in a window that's in diff mode resets 'diff' but not cursor binding. Solution: Reset cursor binding in two more places.
-
Bram Moolenaar authored
Problem: Can set environment variables in the sandbox, could be abused. Solution: Disallow it.
-
- Nov 24, 2010
-
-
Bram Moolenaar authored
Problem: GTK: pressing Enter in inputdialog() doesn't work like clicking OK as documented. Solution: call gtk_entry_set_activates_default(). (Britton Kerin)
-
Bram Moolenaar authored
Problem: Using freed memory when doing ":saveas" and an autocommand sets 'autochdir'. (Kevin Klement) Solution: Get the value of fname again after executing autocommands.
-
Bram Moolenaar authored
Problem: Ruby: Init_prelude is not always available. Solution: Remove use of Init_prelude. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Crash when changing to another window while in a :vimgrep command. (Christian Brabandt) Solution: When wiping out the dummy before, remove it from aucmd_win.
-
Bram Moolenaar authored
Problem: Can't get current line number in a source file. Solution: Add the <slnum> item, similar to <sfile>.
-
Bram Moolenaar authored
Problem: Win32: ":dis +" shows nothing, but "+p does insert text. Solution: Display the * register, since that's what will be inserted. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Win32: Running a filter command makes Vim lose focus. Solution: Use SW_SHOWMINNOACTIVE instead of SW_SHOWMINIMIZED. (Hong Xu)
-
- Nov 16, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Python doesn't work properly when installed in another directory than expected. Solution: Figure out home directory in configure and use Py_SetPythonHome() at runtime. (Roland Puntaier)
-
Bram Moolenaar authored
Problem: Remote ":drop" does not respect 'autochdir'. (Peter Odding) Solution: Don't restore the directory when 'autochdir' is set. (Benjamin Fritz)
-
Bram Moolenaar authored
Problem: Netbeans: crash when socket is disconnected unexpectedly. Solution: Don't cleanup when a read fails, put a message in the queue and disconnect later. (Xavier de Gaye)
-
Bram Moolenaar authored
Problem: Netbeans: Problem with recursively handling messages for Athena and Motif. Solution: Call netbeans_parse_messages() in the main loop, like it's done for GTK. (Xavier de Gaye)
-
Bram Moolenaar authored
Problem: Error "code converter not found" when loading Ruby script. Solution: Load Gem module. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Segfault with command line abbreviation. (Randy Morris) Solution: Don't retrigger the abbreviation when abandoning the command line. Continue editing the command line after the error.
-
Bram Moolenaar authored
Problem: "getline" argument in do_cmdline() shadows global. Solution: Rename the argument. Files: src/ex_docmd.c
-
- Nov 10, 2010
-
-
Bram Moolenaar authored
Problem: Recursively nested lists and dictionaries cause a near-endless loop when comparing them with a copy. (ZyX) Solution: Limit recursiveness in a way that non-recursive structures can still be nested very deep. Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok
-
Bram Moolenaar authored
Problem: Can define a user command for :Print, but it doesn't work. (Aaron Thoma) Solution: Let user command :Print overrule the builtin command (Christian Brabandt) Disallow :X and :Next as a user defined command.
-
Bram Moolenaar authored
Problem: complete() function doesn't reset complete direction. Can't use an empty string in the list of matches. Solution: Set compl_direction to FORWARD. Add "empty" key to allow empty words. (Kikuchan)
-
Bram Moolenaar authored
Problem: When 'completefunc' opens a new window all kinds of errors follow. (Xavier Deguillard) Solution: When 'completefunc' goes to another window or buffer and when it deletes text abort completion. Add a test for 'completefunc'.
-
Bram Moolenaar authored
Problem: Crash when /home/mool/bin:/usr/local/sbin:/usr/local/bin:/home/mool/java/jdk/bin:/bin:/sbin:/usr/bin:/usr/games:/usr/sbin:/usr/X11R6/bin:/usr/local/linux-jdk1.3.1/bin:/usr/local/lib/python2.2/Tools/idle is empty. Solution: Check for vim_getenv() returning NULL. (Yasuhiro Matsumoto)
-
- Nov 03, 2010
-
-
Bram Moolenaar authored
Problem: The link script is clumsy. Solution: Use the --as-needed linker option if available. (Kirill A. Shutemov)
-
Bram Moolenaar authored
Problem: PLT has rebranded their Scheme to Racket. Solution: Add support for Racket 5.x. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: ":earlier 1f" doesn't work after loading undo file. Solution: Set b_u_save_nr_cur when loading an undo file. (Christian Brabandt) Fix only showing time in ":undolist"
-
- Oct 27, 2010
-
-
Bram Moolenaar authored
Problem: Missing makefile updates for test 75. Solution: Update the makefiles.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't build Ruby on MS-Windows. Solution: Add #ifdef, don't use WIN3264 before including vim.h.
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. Solution: Initialize the variable always.
-