- Feb 11, 2012
-
-
Bram Moolenaar authored
Problem: There is no way to avoid ":doautoall" reading modelines. Solution: Add the <nomodeline> argument. Adjust documentation.
-
Bram Moolenaar authored
Problem: Continue looping inside FOR_ALL_TAB_WINDOWS even when already done. Solution: Use goto instead of break. (Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Compiler warnings for types on Windows. Solution: Add type casts. (Mike Williams)
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. Solution: Move the variable inside #ifdef.
-
- Feb 05, 2012
-
-
Bram Moolenaar authored
Problem: Using join() can be slow. Solution: Compute the size of the result before allocation to avoid a lot of allocations and copies. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: Using continued lines in a Vim script can be slow. Solution: Instead of reallocating for every line use a growarray. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: ACLs are not supported for ZFS or NFSv4 on Solaris. Solution: Add configure check and code. (Danek Duvall)
-
Bram Moolenaar authored
Problem: Fetching a key at a prompt may be confused by escape sequences. Especially when getting a prompt at a VimEnter autocommand. (Alex Efros) Solution: Properly handle escape sequences deleted by check_termcode().
-
Bram Moolenaar authored
Problem: When a custom filetype detection uses "augroup END" the conf fileytpe detection does not have the filetypedetect group. Solution: Always end the group and include filetypedetect in the conf autocommand. (Lech Lorens)
-
Bram Moolenaar authored
Problem: When 'cpoptions' includes "E" "c0" in the first column is an error. The redo register is then set to the errornous command. Solution: Do not set the redo register if the command fails because of an empty region. (Hideki Eiraku)
-
- Feb 04, 2012
-
-
Bram Moolenaar authored
Problem: Win32: an xpm file without a mask crashes Vim. Solution: Fail when the mask is missing. (Dave Bodenstab)
-
Bram Moolenaar authored
Problem: readfile() can be slow with long lines. Solution: Use realloc() instead of alloc(). (John Little)
-
Bram Moolenaar authored
Problem: With '$' in 'cpoptions' the $ is not displayed in the first column. Solution: Use -1 instead of 0 as a special value. (Hideki Eiraku and Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Search history lines are duplicated. (Edwin Steiner) Solution: Convert separator character from space to NUL.
-
Bram Moolenaar authored
Problem: Win16 version missing some functions. Solution: Add #defines for the functions.
-
Bram Moolenaar authored
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
-
Bram Moolenaar authored
Problem: Python 3 does not have __members__. Solution: Add "name" and "number" in another way. (lilydjwg)
-
- Jan 28, 2012
-
-
Bram Moolenaar authored
Problem: Get E832 when setting 'undofile' in vimrc and there is a file to be edited on the command line. (Toothpik) Solution: Do not try reading the undo file for a file that wasn't loaded.
-
- Jan 26, 2012
-
-
Bram Moolenaar authored
Problem: "it" and "at" don't work properly with a dash in the tag name. Solution: Require a space to match the tag name. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: DBCS encoding in a user command does not always work. Solution: Skip over DBCS characters. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: When a user complete function returns -1 an error message is given. Solution: When -2 is returned stop completion silently. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Test 43 fails with a tiny build. Solution: Only run test 43 with at least a small build.
-
Bram Moolenaar authored
Problem: Compiler warning for wrong pointer. Solution: Add type cast.
-
Bram Moolenaar authored
Problem: Compiler warning for wrong pointer. Solution: Add type cast.
-
Bram Moolenaar authored
Problem: Completion of functions stops once a dictionary is encountered. (James McCoy) Solution: Return an empty string instead of NULL.
-
Bram Moolenaar authored
Problem: Using CTRL-A on "000" drops the leading zero, while on "001" it doesn't. Solution: Detect "000" as an octal number. (James McCoy)
-
Bram Moolenaar authored
Problem: Build warnings on MS-Windows. Solution: Add type casts. (Mike Williams)
-
Bram Moolenaar authored
Problem: Storing a float in a session file has an additional '&'. Solution: Remove the '&'. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Pasting in Visual mode using the "" register does not work. (John Beckett) Solution: Detect that the write is overwriting the pasted register. (Christian Brabandt)
-
- Jan 23, 2012
-
-
Bram Moolenaar authored
Problem: Compiler error for // comment. (Joachim Schmitz) Solution: Turn into /* comment */.
-
- Jan 20, 2012
-
-
Bram Moolenaar authored
Problem: The license in pty.c is unclear. Solution: Add a comment about the license.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Missing declaration. Solution: Add the declaration. (John Marriott)
-
Bram Moolenaar authored
Problem: ":12verbose call F()" may duplicate text while trying to truncate. (Thinca) Solution: Only truncate when there is not enough room. Also check the byte length of the buffer.
-
Bram Moolenaar authored
Problem: Multi-byte characters in b:browsefilter are not handled correctly. Solution: First use convert_filter() normally and then convert to wide characters. (Taro Muraoka)
-
Bram Moolenaar authored
Problem: When xterm gets back the function keys it may delete the urxvt mouse termcap code. Solution: Check for the whole code, not just the start. (Egmont Koblinger)
-
Bram Moolenaar authored
Problem: When a complete function uses refresh "always" redo will not work properly. Solution: Do not reset compl_leader when compl_opt_refresh_always is set. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: ":helpgrep" does not trigger QuickFixCmd* autocommands. Solution: Trigger the autocommands. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When jumping to the first error a line of the buffer is sometimes redrawn on top of the list of errors. Solution: Do not call update_topline_redraw() if the display was scrolled up.
-
- Jan 10, 2012
-
-
Bram Moolenaar authored
Problem: A couple more shadowed variables. Solution: Rename the variables.
-