summaryrefslogtreecommitdiff
path: root/src/misc2.c
AgeCommit message (Collapse)Author
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-04-12updated for version 7.3.888Bram Moolenaar
Problem: Filename completion with 'fileignorecase' does not work for multi-byte characters. Solution: Make 'fileignorecase' work properly. (Hirohito Higashi)
2013-03-19updated for version 7.3.874Bram Moolenaar
Problem: Comparing file names does not handle multi-byte characters properly. Solution: Implement multi-byte handling.
2013-03-19updated for version 7.3.872Bram Moolenaar
Problem: On some systems case of file names is always ignored, on others never. Solution: Add the 'fileignorecase' option to control this at runtime. Implies 'wildignorecase'.
2012-11-28updated for version 7.3.740Bram Moolenaar
Problem: IOC tool complains about undefined behavior for int. Solution: Change to unsigned int. (Dominique Pelle)
2012-08-15updated for version 7.3.632Bram Moolenaar
Problem: Cannot select beyond 222 columns with the mouse in xterm. Solution: Add support for SGR mouse tracking. (Hayaki Saito)
2012-08-15updated for version 7.3.631Bram Moolenaar
Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
2012-06-29updated for version 7.3.577Bram Moolenaar
Problem: Size of memory does not fit in 32 bit unsigned. Solution: Use Kbyte instead of byte. Call GlobalMemoryStatusEx() instead of GlobalMemoryStatus() when available.
2012-02-29updated for version 7.3.459Bram Moolenaar
Problem: Win32: Warnings for type conversion. Solution: Add type casts. (Mike Williams)
2012-02-22updated for version 7.3.454Bram Moolenaar
Problem: Re-allocating memory slows Vim down. Solution: Use realloc() in ga_grow(). (Dominique Pelle)
2012-02-22updated for version 7.3.449Bram Moolenaar
Problem: Crash when a BufWinLeave autocommand closes the only other window. (Daniel Hunt) Solution: Abort closing a buffer when it becomes the only one.
2012-02-20updated for version 7.3.446Bram Moolenaar
Problem: Win32: External commands with special characters don't work. Solution: Add the 'shellxescape' option.
2012-02-19updated for version 7.3.445Bram Moolenaar
Problem: Can't properly escape commands for cmd.exe. Solution: Default 'shellxquote' to '('. Append ')' to make '(command)'. No need to use "/s" for 'shellcmdflag'.
2012-01-20updated for version 7.3.405Bram Moolenaar
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)
2012-01-10updated for version 7.3.400Bram Moolenaar
Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
2012-01-10updated for version 7.3.397Bram Moolenaar
Problem: ":helpgrep" does not work properly when 'encoding' is not utf-8 or latin1. Solution: Convert non-ascii lines to 'encoding'. (Yasuhiro Matsumoto)
2011-12-08updated for version 7.3.371Bram Moolenaar
Problem: Crash in autocomplete. (Greg Weber) Solution: Check not going over allocated buffer size.
2011-10-26updated for version 7.3.348Bram Moolenaar
Problem: "call range(1, 947948399)" causes a crash. (ZyX) Solution: Avoid a loop in the out of memory message.
2011-08-19updated for version 7.3.285Bram Moolenaar
Problem: Mapping <Char-123> no longer works. Solution: Properly check for "char-". Add a test for it.
2011-08-17updated for version 7.3.284Bram Moolenaar
Problem: The str2special() function doesn't handle multi-byte characters properly. Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
2011-07-27updated for version 7.3.264Bram Moolenaar
Problem: When the current directory name contains wildcard characters, such as "foo[with]bar", the tags file can't be found. (Jeremy Erickson) Solution: When searching for matching files also match without expanding wildcards. This is a bit of a hack.
2011-07-07updated for version 7.3.242Bram Moolenaar
Problem: Illegal memory access in after_pathsep(). Solution: Check that the pointer is not at the start of the file name. (Dominique Pelle)
2011-07-07updated for version 7.3.240Bram Moolenaar
Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
2011-07-07updated for version 7.3.239Bram Moolenaar
Problem: Python corrects the cursor column without taking 'virtualedit' into account. (lilydjwg) Solution: Call check_cursor_col_win().
2011-04-11updated for version 7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2010-12-08updated for version 7.3.076Bram Moolenaar
Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
2010-08-13Avoid warnings from the clang compiler. (Dominique Pelle)Bram Moolenaar
2010-08-08Update help about wildcards in 'tags' option.Bram Moolenaar
2010-08-08Fix: 'suffixesadd' was used for finding tags file.Bram Moolenaar
2010-08-08Remove unused code.Bram Moolenaar
2010-08-04After entering a crypt key would need to hit return to continue.Bram Moolenaar
When silencing a message it would still clear a kept message.
2010-08-04Make :find completion consistent between Unix and MS-Windows. Add a test.Bram Moolenaar
(Nazri Ramliy)
2010-07-31Fixes for coverity warnings.Bram Moolenaar
2010-07-25Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar
2010-07-20Avoid error when exiting in diff mode with EXITFREE defined.Bram Moolenaar
2010-07-20Change 'cryptmethod' from a number to a string option. Make it global-local.Bram Moolenaar
2010-06-21Crypt the swapfile.Bram Moolenaar
2010-06-02Optimize the blowfish crypt/decrypt code a bit more.Bram Moolenaar
2010-06-01Made crypt/decrypt faster.Bram Moolenaar
2010-05-31Add test for gettabvar() and settabvar().Bram Moolenaar
2010-05-30A few more fixes for undo file. Split test in two parts so that it doesn'tBram Moolenaar
fail with tiny features.
2010-05-29Various improvements to undo file code to make it more robust.Bram Moolenaar
2010-05-29Fix a few more things for persistent undo.Bram Moolenaar
2010-05-24Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar
A few minor changes.
2010-05-22Fix wrong memory access when clearing crypt key.Bram Moolenaar
2010-05-16Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar
2010-05-16Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar
2009-12-31updated for version 7.2-324Bram Moolenaar
2009-11-25updated for version 7.2-306Bram Moolenaar
2009-11-11updated for version 7.2-290Bram Moolenaar