summaryrefslogtreecommitdiff
path: root/src/misc2.c
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.285v7.3.285Bram Moolenaar2011-08-191-18/+24
| | | | | Problem: Mapping <Char-123> no longer works. Solution: Properly check for "char-". Add a test for it.
* updated for version 7.3.284v7.3.284Bram Moolenaar2011-08-171-13/+30
| | | | | | Problem: The str2special() function doesn't handle multi-byte characters properly. Solution: Recognize multi-byte characters. (partly by Vladimir Vichniakov)
* updated for version 7.3.264v7.3.264Bram Moolenaar2011-07-271-4/+6
| | | | | | | | 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.
* updated for version 7.3.242v7.3.242Bram Moolenaar2011-07-071-2/+2
| | | | | | Problem: Illegal memory access in after_pathsep(). Solution: Check that the pointer is not at the start of the file name. (Dominique Pelle)
* updated for version 7.3.240v7.3.240Bram Moolenaar2011-07-071-0/+19
| | | | | | Problem: External commands can't use pipes on MS-Windows. Solution: Implement pipes and use them when 'shelltemp' isn't set. (Vincent Berthoux)
* updated for version 7.3.239v7.3.239Bram Moolenaar2011-07-071-16/+26
| | | | | | Problem: Python corrects the cursor column without taking 'virtualedit' into account. (lilydjwg) Solution: Call check_cursor_col_win().
* updated for version 7.3.160v7.3.160Bram Moolenaar2011-04-111-0/+22
| | | | | | Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
* updated for version 7.3.076v7.3.076Bram Moolenaar2010-12-081-2/+7
| | | | | Problem: Clang warnings for dead code. Solution: Remove it. (Carlo Teubner)
* Avoid warnings from the clang compiler. (Dominique Pelle)Bram Moolenaar2010-08-131-4/+4
|
* Update help about wildcards in 'tags' option.Bram Moolenaar2010-08-081-1/+1
|
* Fix: 'suffixesadd' was used for finding tags file.Bram Moolenaar2010-08-081-2/+8
|
* Remove unused code.Bram Moolenaar2010-08-081-21/+0
|
* After entering a crypt key would need to hit return to continue.Bram Moolenaar2010-08-041-1/+1
| | | | When silencing a message it would still clear a kept message.
* Make :find completion consistent between Unix and MS-Windows. Add a test.Bram Moolenaar2010-08-041-0/+30
| | | | (Nazri Ramliy)
* Fixes for coverity warnings.Bram Moolenaar2010-07-311-2/+3
|
* Add support for horizontal scroll wheel. (Bjorn Winckler)Bram Moolenaar2010-07-251-2/+6
|
* Avoid error when exiting in diff mode with EXITFREE defined.Bram Moolenaar2010-07-201-1/+2
|
* Change 'cryptmethod' from a number to a string option. Make it global-local.Bram Moolenaar2010-07-201-0/+35
|
* Crypt the swapfile.Bram Moolenaar2010-06-211-0/+55
|
* Optimize the blowfish crypt/decrypt code a bit more.Bram Moolenaar2010-06-021-19/+15
|
* Made crypt/decrypt faster.Bram Moolenaar2010-06-011-22/+70
|
* Add test for gettabvar() and settabvar().Bram Moolenaar2010-05-311-1/+1
|
* A few more fixes for undo file. Split test in two parts so that it doesn'tBram Moolenaar2010-05-301-8/+9
| | | | fail with tiny features.
* Various improvements to undo file code to make it more robust.Bram Moolenaar2010-05-291-3/+3
|
* Fix a few more things for persistent undo.Bram Moolenaar2010-05-291-0/+162
|
* Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar2010-05-241-1/+1
| | | | A few minor changes.
* Fix wrong memory access when clearing crypt key.Bram Moolenaar2010-05-221-3/+3
|
* Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar2010-05-161-11/+41
|
* Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar2010-05-161-0/+51
|
* updated for version 7.2-324v7.2.324Bram Moolenaar2009-12-311-0/+2
|
* updated for version 7.2-306v7.2.306Bram Moolenaar2009-11-251-0/+1
|
* updated for version 7.2-290v7.2.290Bram Moolenaar2009-11-111-6/+11
|
* updated for version 7.2-279v7.2.279Bram Moolenaar2009-11-031-3/+3
|
* updated for version 7.2-178v7.2.178Bram Moolenaar2009-05-161-10/+9
|
* updated for version 7.2-161v7.2.161Bram Moolenaar2009-04-291-2/+3
|
* updated for version 7.2-139v7.2.139Bram Moolenaar2009-03-111-2/+9
|
* updated for version 7.2-126v7.2.126Bram Moolenaar2009-02-241-0/+6
|
* updated for version 7.2-087v7.2.087Bram Moolenaar2009-01-221-1/+2
|
* updated for version 7.2-073v7.2.073Bram Moolenaar2008-12-241-4/+6
|
* updated for version 7.2-035v7.2.035Bram Moolenaar2008-11-121-1/+1
|
* updated for version 7.2-010v7.2.010Bram Moolenaar2008-09-061-4/+0
|
* updated for version 7.2b-018v7.2b.018Bram Moolenaar2008-07-241-1/+12
|
* updated for version 7.2b-005v7.2b.005Bram Moolenaar2008-07-161-1/+24
|
* updated for version 7.2a-013v7.2a.013Bram Moolenaar2008-07-041-7/+21
|
* updated for version 7.2aBram Moolenaar2008-06-241-17/+11
|
* updated for version 7.1-289v7.1.289Bram Moolenaar2008-04-011-2/+6
|
* updated for version 7.1-256v7.1.256Bram Moolenaar2008-02-201-218/+232
|
* updated for version 7.1-203v7.1.203Bram Moolenaar2008-01-041-2/+7
|
* updated for version 7.1-161v7.1.161Bram Moolenaar2007-11-241-7/+20
|
* updated for version 7.1-153v7.1.153Bram Moolenaar2007-11-081-0/+4
|