summaryrefslogtreecommitdiffstats
path: root/src/testdir/Make_vms.mms
AgeCommit message (Collapse)Author
2013-11-21updated for version 7.4.098v7.4.098Bram Moolenaar
Problem: When using ":'<,'>del" errors may be given for the visual line numbers being out of range. Solution: Reset Visual mode in ":del". (Lech Lorens)
2013-11-12updated for version 7.4.090v7.4.090Bram Moolenaar
Problem: Win32: When a directory name contains an exclamation mark, completion doesn't complete the contents of the directory. Solution: Escape the exclamation mark. (Jan Stocker)
2013-11-08updated for version 7.4.079v7.4.079Bram Moolenaar
Problem: A script cannot detect whether 'hlsearch' highlighting is actually displayed. Solution: Add the "v:hlsearch" variable. (ZyX)
2013-11-07updated for version 7.4.075v7.4.075Bram Moolenaar
Problem: Locally setting 'undolevels' is not tested. Solution: Add a test. (Christian Brabandt)
2013-09-19updated for version 7.4.028v7.4.028Bram Moolenaar
Problem: Equivalence classes are not working for multi-byte characters. Solution: Copy the rules from the old to the new regexp engine. Add a test to check both engines.
2013-07-09updated for version 7.4a.005v7.4a.005Bram Moolenaar
Problem: Scroll binding causes unexpected scroll. Solution: Store the topline after updating scroll binding. Add a test. (Lech Lorens)
2013-07-03updated for version 7.3.1295v7.3.1295Bram Moolenaar
Problem: glob() and globpath() do not handle escaped special characters properly. Solution: Handle escaped characters differently. (Adnan Zafar)
2013-07-01updated for version 7.3.1285v7.3.1285Bram Moolenaar
Problem: No tests for picking a window when selecting an entry in a location list. Not picking the right window sometimes. Solution: Add test 96. Set usable_win appropriately. (Lech Lorens)
2013-05-19updated for version 7.3.970v7.3.970Bram Moolenaar
Problem: Syntax highlighting can be slow. Solution: Include the NFA regexp engine. Add the 'regexpengine' option to select which one is used. (various authors, including Ken Takata, Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)
2013-04-12updated for version 7.3.887v7.3.887Bram Moolenaar
Problem: No tests for Visual mode operators, what 7.3.879 fixes. Solution: Add a new test file. (David Bürgin)
2013-02-26updated for version 7.3.838v7.3.838Bram Moolenaar
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
2013-02-20updated for version 7.3.831v7.3.831Bram Moolenaar
Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
2013-02-13updated for version 7.3.816v7.3.816Bram Moolenaar
Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi)
2013-02-13updated for version 7.3.810v7.3.810Bram Moolenaar
Problem: 'relativenumber is reset unexpectedly. (François Ingelrest) Solution: After an option was reset also reset the global value. Add a test. (Christian Brabandt)
2012-12-05updated for version 7.3.748v7.3.748Bram Moolenaar
Problem: Cannot properly test conceal mode. Solution: Add the screencol() and screenrow() functions. Use them in test88. (Simon Ruderich)
2012-10-06updated for version 7.3.684v7.3.684Bram Moolenaar
Problem: "make test" does not delete lua.vim. Solution: Add lua.vim to the clean target. (Simon Ruderich)
2012-04-05updated for version 7.3.491v7.3.491Bram Moolenaar
Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho)
2012-03-28updated for version 7.3.487v7.3.487Bram Moolenaar
Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical movement is reset unnecessarily. Solution: Do not set w_set_curswant for every option. Add a test for this. (Kana Natsuno) Add the P_CURSWANT flag for options.
2011-10-12updated for version 7.3.336v7.3.336Bram Moolenaar
Problem: When a tags file specifies an encoding different from 'enc' it may hang and using a pattern doesn't work. Solution: Convert the whole line. Continue reading the header after the SORT tag. Add test83. (Yukihiro Nakadaira)
2011-07-15updated for version 7.3.253v7.3.253Bram Moolenaar
Problem: "echo 'abc' > ''" returns 0 or 1, depending on 'ignorecase'. Checks in mb_strnicmp() for illegal and truncated bytes are wrong. Should not assume that byte length is equal before case folding. Solution: Add utf_safe_read_char_adv() and utf_strnicmp(). Add a test for this. (Ivan Krasilnikov)
2011-06-26updated for version 7.3.235v7.3.235Bram Moolenaar
Problem: ";" gets stuck on a "t" command, it's not useful. Solution: Add the ';' flag in 'cpo'. (Christian Brabandt)
2011-06-19updated for version 7.3.225v7.3.225Bram Moolenaar
Problem: Using "\n" in a substitute inside ":s" does not result in a line break. Solution: Change behavior inside vim_regexec_nl(). Add tests. (Motoya Kurotsu)
2011-06-13updated for version 7.3.216v7.3.216Bram Moolenaar
Problem: When recovering a file a range of lines is missing. (Charles Jie) Solution: Reset the index when advancing to the next pointer block. Add a test to verify recovery works.
2011-04-28updated for version 7.3.170v7.3.170Bram Moolenaar
Problem: VMS Makefile for testing was not updated for test77. Solution: Add test77 to the Makefile.
2010-11-10updated for version 7.3.052v7.3.052Bram Moolenaar
Problem: When 'completefunc' opens a new window all kinds of errors follow. (Xavier Deguillard) Solution: When 'completefunc' goes to another window or buffer and when it deletes text abort completion. Add a test for 'completefunc'.
2010-10-27updated for version 7.3.047v7.3.047Bram Moolenaar
Problem: Missing makefile updates for test 75. Solution: Update the makefiles.
2010-10-20updated for version 7.3.030v7.3.030Bram Moolenaar
Problem: Cannot store Dict and List in viminfo file. Solution: Add support for this. (Christian Brabandt)
2010-08-04Make :find completion consistent between Unix and MS-Windows. Add a test.Bram Moolenaar
(Nazri Ramliy)
2010-07-30Improvements for VMS. (Zoltan Arpadffy)Bram Moolenaar
2010-07-29Few more fixes for VMS.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.
2009-11-17updated for version 7.2-302v7.2.302Bram Moolenaar
2009-09-18updated for version 7.2-260v7.2.260Bram Moolenaar
2009-03-11updated for version 7.2-138v7.2.138Bram Moolenaar
2008-09-01updated for version 7.2-007v7.2.007Bram Moolenaar
2008-06-24updated for version 7.2av7.2aBram Moolenaar
2007-08-14updated for version 7.1-072v7.1.072Bram Moolenaar
2007-07-26updated for version 7.1-041v7.1.041Bram Moolenaar
2006-04-30updated for version 7.0gv7.0gBram Moolenaar
2006-03-15updated for version 7.0225Bram Moolenaar
2005-12-22updated for version 7.0175v7.0175Bram Moolenaar
2005-07-05updated for version 7.0103v7.0103Bram Moolenaar
2005-07-04updated for version 7.0102v7.0102Bram Moolenaar
2005-05-18updated for version 7.0072v7.0072Bram Moolenaar
2005-01-19updated for version 7.0042v7.0042Bram Moolenaar
2004-12-24updated for version 7.0024v7.0024Bram Moolenaar
2004-07-02updated for version 7.0004Bram Moolenaar
2004-06-13updated for version 7.0001v7.0001Bram Moolenaar