- Jan 08, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Crash when splitting a window with zero height. (Yukihiro Nakadaira) Solution: Don't set the fraction in a window with zero height.
-
- Jan 04, 2011
-
-
Bram Moolenaar authored
Problem: Function that ignores error still causes called_emsg to be set. E.g. when expand() fails the status line is disabled. Solution: Move check for emsg_not_now() up. (James Vega)
-
Bram Moolenaar authored
Problem: Using ":call" inside "if 0" does not see that a function returns a Dict and gives error for "." as string concatenation. Solution: Use eval0() to skip over the expression. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: "gvim -nb" is not interruptable. Leaking file descriptor on netbeans connection error. Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye)
-
Bram Moolenaar authored
Problem: Win32: In Chinese tear-off menu doesn't work. (Weasley) Solution: Use menu_name_equal(). (Alex Jakushev)
-
- Dec 30, 2010
-
-
Bram Moolenaar authored
Problem: Using abs() requires type cast to int. Solution: Use labs() so that the value remains long. (Hong Xu)
-
Bram Moolenaar authored
Problem: New DLL dependencies in MingW with gcc 4.5.0. Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen)
-
Bram Moolenaar authored
Problem: Resizing the window when exiting. Solution: Don't resize when exiting.
-
Bram Moolenaar authored
Problem: "vim -w foo" writes special key codes for removed escape sequences. (Josh Triplett) Solution: Don't write K_IGNORE codes.
-
Bram Moolenaar authored
Problem: Wrong help text for Cscope. Solution: Adjust the help text for "t". (Dominique Pelle)
-
- Dec 24, 2010
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit MS-Windows. Solution: Add type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: Ruby can't load Gems sometimes, may cause a crash. Solution: Undefine off_t. Use ruby_process_options(). (Yasuhiro Matsumoto)
-
- Dec 17, 2010
-
-
Bram Moolenaar authored
Problem: EINTR is not always defined. Solution: Include errno.h in vim.h.
-
Bram Moolenaar authored
Problem: When using a mapping with an expression and there was no count, v:count has the value of the previous command. (ZyX) Solution: Also set v:count and v:count1 before getting the character that could be a command or a count.
-
Bram Moolenaar authored
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
-
Bram Moolenaar authored
Problem: When splitting the window, the new one scrolls with the cursor at the top. Solution: Compute w_fraction before setting the new height.
-
Bram Moolenaar authored
Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
-
Bram Moolenaar authored
Problem: Leaking file descriptor when hostname doesn't exist. Solution: Remove old debugging lines.
-
- 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
-