- May 17, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Use uint32_t to avoid crash on 64 bit machines. Added error numbers for Blowfish errors. Fixed the tiny version not building.
-
- May 16, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Reproducible crash in syntax HL. (George Reilly, Dominique Pelle) Solution: Make sst_stacksize an int instead of short. (Dominique Pelle)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Crash when using bad_char_idx uninitialized. (Patrick Texier) Solution: Don't use bad_char_idx, reproduce the ++bad argument from bad_char.
-
Bram Moolenaar authored
-
- May 15, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
modified.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
- May 14, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't use cscope with QuickFixCmdPre and QuickFixCmdPost. Solution: Add cscope support for these autocmd events. (Bryan Venteicher)
-
Bram Moolenaar authored
Problem: When menus are translated they can only be found by the translated name. That makes ":emenu" difficult to use. Solution: Store the untranslated name and use it for completion and :emenu. (Edward L. Fox / Liang Peng / Bezetek James)
-
Bram Moolenaar authored
Problem: ":amenu" moves the cursor when in Insert mode. Solution: Use CTRL-\ CTRL-O instead of CTRL-O. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The ++bad argument is handled wrong, resulting in an invalid memory access. Solution: Use the bad_char field only for the replacement character, add bad_char_idx to store the position. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: A file that exists but access is denied may result in a "new file" message. E.g. when its directory is unreadable. Solution: Specifically check for ENOENT to decide a file doesn't exist. (partly by James Vega)
-
Bram Moolenaar authored
Problem: Using setqflist([]) to clear the error list doesn't work properly. Solution: Set qf_nonevalid to TRUE when appropriate. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The swapfile is created using the destination of a symlink, but recovery doesn't follow symlinks. Solution: When recovering, resolve symlinks. (James Vega)
-
Bram Moolenaar authored
Problem: Commas in 'langmap' are not always handled correctly. Solution: Require commas to be backslash escaped. (James Vega)
-
Bram Moolenaar authored
Problem: Some compilers complain about fourth EX() argument. Solution: Add cast to long_u.
-
Bram Moolenaar authored
Problem: ":colorscheme" without an argument doesn't do anything. Solution: Make it echo the current color scheme name. (partly by Christian Brabandt)
-
Bram Moolenaar authored
Problem: Crash when assigning s: to variable. (Yukihiro Nakadaira) Solution: Make ga_scripts contain pointer to scriptvar_T instead of scriptvar_T itself. (Dominique Pelle)
-
- May 13, 2010
-
-
Bram Moolenaar authored
Problem: May get E763 when using spell dictionaries. Solution: Avoid utf-8 case folded character to be truncated to 8 bits and differ from latin1. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Folds are sometimes not updated properly and there is no way to force an update. Solution: Make "zx" and "zX" recompute folds (suggested by Christian Brabandt)
-
Bram Moolenaar authored
Problem: ":argedit" does not accept "++enc=utf8" as documented. (Dominique Pelle) Solution: Add the ARGOPT flag to ":argedit".
-
Bram Moolenaar authored
Problem: Memory leak in Motif when clicking on "Search Vim Help". Solution: Free string returned by XmTextGetString(). (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Vim tries to set the background or foreground color in a terminal to -1. (Graywh) Happens with ":hi Normal ctermbg=NONE". Solution: When resetting the foreground or background color don't set the color, let the clear screen code do that.
-
Bram Moolenaar authored
Problem: When 'shell' has an argument with a slash then 'shellpipe' is not set properly. (Britton Kerin) Solution: Assume there are no spaces in the path, arguments follow.
-
- May 07, 2010
-
-
Bram Moolenaar authored
Problem: Logtalk.dict is not installed. Solution: Add it to the install target. (Markus Heidelberg)
-
Bram Moolenaar authored
Problem: Win32: Can't open a remote file when starting Vim. Solution: Don't invoke cygwin_conv_path() for URLs. (Tomoya Adachi)
-