summaryrefslogtreecommitdiff
path: root/src/testdir
AgeCommit message (Collapse)Author
2012-07-16updated for version 7.3.603Bram Moolenaar
Problem: It is possible to add replace builtin functions by calling extend() on g:. Solution: Add a flag to a dict to indicate it is a scope. Check for existing functions. (ZyX)
2012-07-06updated for version 7.3.591Bram Moolenaar
Problem: Can only move to a tab by absolute number. Solution: Move a number of tabs to the left or the right. (Lech Lorens)
2012-06-29updated for version 7.3.582Bram Moolenaar
Problem: Missing parts of the test OK file. Solution: Add the missing parts.
2012-06-29updated for version 7.3.576Bram Moolenaar
Problem: Formatting of lists inside comments is not right yet. Solution: Use another solution and add a test. (Tor Perkins)
2012-06-29updated for version 7.3.569Bram Moolenaar
Problem: Evaluating Vim expression in Python is insufficient. Solution: Add vim.bindeval(). Also add pyeval() and py3eval(). (ZyX)
2012-06-13updated for version 7.3.552Bram Moolenaar
Problem: Formatting inside comments does not use the "2" flag in 'formatoptions'. Solution: Support the "2" flag. (Tor Perkins)
2012-06-13updated for version 7.3.550Bram Moolenaar
Problem: With "j" in 'formatoptions' a list leader is not removed. (Gary Johnson) Solution: Don't ignore the start of a three part comment. (Lech Lorens)
2012-06-13updated for version 7.3.549Bram Moolenaar
Problem: In 'cinoptions' "0s" is interpreted as one shiftwidth. (David Pineau) Solution: Use the zero as zero. (Lech Lorens)
2012-06-06updated for version 7.3.541Bram Moolenaar
Problem: When joining lines comment leaders need to be removed manually. Solution: Add the 'j' flag to 'formatoptions'. (Lech Lorens)
2012-06-01updated for version 7.3.538Bram Moolenaar
Problem: 'efm' does not handle Tabs in pointer lines. Solution: Add Tab support. Improve tests. (Lech Lorens)
2012-05-18updated for version 7.3.516Bram Moolenaar
Problem: extend(o, o) may crash Vim. Solution: Fix crash and add test. (Thinca and Hirohito Higashi)
2012-04-30updated for version 7.3.510Bram Moolenaar
Problem: Test 77 fails on Solaris 7. (Michael Soyka) Solution: Replace any tabs with spaces.
2012-04-13updated for version 7.3.496Bram Moolenaar
Problem: MS-DOS: When "diff" trips over difference in line separators some tests fail. Solution: Make some .ok files use unix line separators. (David Pope)
2012-04-05updated for version 7.3.492Bram Moolenaar
Problem: Can't indent conditions separately from function arguments. Solution: Add the 'k' flag in 'cino. (Lech Lorens)
2012-04-05updated for version 7.3.491Bram Moolenaar
Problem: No tests for Lua. Solution: Add some simple tests for Lua. (Luis Carvalho)
2012-03-28updated for version 7.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.
2012-03-07updated for version 7.3.470Bram Moolenaar
Problem: Test 62 fails when compiled without GUI and X11. Solution: Don't test :drop when it is not supported.
2012-02-22updated for version 7.3.456Bram Moolenaar
Problem: ":tab drop file" has several problems, including moving the current window and opening a new tab for a file that already has a window. Solution: Refactor ":tab drop" handling. (Hirohito Higashi)
2012-02-13updated for version 7.3.444Bram Moolenaar
Problem: ":all!" and ":sall!" give error E477, even though the documentation says these are valid commands. Solution: Support the exclamation mark. (Hirohito Higashi)
2012-01-26updated for version 7.3.416Bram Moolenaar
Problem: Compiler warning for wrong pointer. Solution: Add type cast.
2012-01-10updated for version 7.3.395Bram Moolenaar
Problem: "dv?bar" in the last line deletes too much and breaks undo. Solution: Only adjust the cursor position when it's after the last line of the buffer. Add a test. (Christian Brabandt)
2012-01-04updated for version 7.3.392Bram Moolenaar
Problem: When setting 'undofile' while the file is already loaded but unchanged, try reading the undo file. (Andy Wokula) Solution: Compute a checksum of the text when 'undofile' is set. (Christian Brabandt)
2011-12-30updated for version 7.3.387Bram Moolenaar
Problem: Test 83 may fail for some encodings. Solution: Set 'encoding' to utf-8 earlier.
2011-12-23updated for version 7.3.386Bram Moolenaar
Problem: Test 83 fails when iconv does not support cp932. (raf) Solution: Test if conversion works. (Yukihiro Nakadaira)
2011-12-14updated for version 7.3.380Bram Moolenaar
Problem: C-indenting wrong for a function header. Solution: Skip to the start paren. (Lech Lorens)
2011-12-14updated for version 7.3.379Bram Moolenaar
Problem: C-indenting wrong for static enum. Solution: Skip over "static". (Lech Lorens)
2011-12-14updated for version 7.3.377Bram Moolenaar
Problem: No support for bitwise AND, OR, XOR and invert. Solution: Add add(), or(), invert() and xor() functions.
2011-11-30updated for version 7.3.363Bram Moolenaar
Problem: C indenting is wrong after #endif followed by a semicolon. Solution: Add special handling for a semicolon in a line by itself. (Lech Lorens)
2011-10-12updated for version 7.3.338Bram Moolenaar
Problem: Using getchar() in an expression mapping doesn't work well. Solution: Don't save and restore the typeahead. (James Vega)
2011-10-12updated for version 7.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-10-04updated for version 7.3.332Bram Moolenaar
Problem: Indent after "public:" is not increased in C++ code. (Lech Lorens) Solution: Check for namespace after the regular checks. (partly by Martin Gieseking)
2011-09-08updated for version 7.3.302Bram Moolenaar
Problem: Test 19 fails without 'smartindent' and +eval. Solution: Don't use ":exe". Source small.vim.
2011-09-07updated for version 7.3.301Bram Moolenaar
Problem: When 'smartindent' and 'copyindent' are set a Tab is used even though 'expandtab' is set. Solution: Do not insert Tabs. Add a test. (Christian Brabandt)
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-10updated for version 7.3.280Bram Moolenaar
Problem: ":lmake" does not update the quickfix window title. Solution: Update the title. (Lech Lorens)
2011-08-10updated for version 7.3.273Bram Moolenaar
Problem: A BOM in an error file is seen as text. (Aleksey Baibarin) Solution: Remove the BOM from the text before evaluating. (idea by Christian Brabandt)
2011-07-20updated for version 7.3.259Bram Moolenaar
Problem: Equivalence classes only work for latin characters. Solution: Add the Unicode equivalence characters. (Dominique Pelle)
2011-07-20updated for version 7.3.256Bram Moolenaar
Problem: Javascript indenting not sufficiently tested. Solution: Add more tests. (Luc Deschenaux) Mark the lines that are indented wrong.
2011-07-18Updated runtime files.Bram Moolenaar
Add missing test82 files.
2011-07-15updated for version 7.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-07-15updated for version 7.3.252Bram Moolenaar
Problem: Tests fail. (David Northfield) Solution: Add missing update for .ok file.
2011-07-15updated for version 7.3.249Bram Moolenaar
Problem: Wrong indenting for array initializer. Solution: Detect '}' in a better way. (Lech Lorens)
2011-07-15updated for version 7.3.247Bram Moolenaar
Problem: Running tests changes the users viminfo file. Test for patch 7.3.245 missing. Solution: Add "nviminfo" to the 'viminfo' option. Include the test.
2011-06-26updated for version 7.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.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-13Add files added by recent patches.Bram Moolenaar
2011-06-13updated for version 7.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-06-12updated for version 7.3.213Bram Moolenaar
Problem: Javascript object literal is not indented correctly. Solution: Make a special case for when "J1" is in 'cino'. (Luc Deschenaux)
2011-05-25updated for version 7.3.202Bram Moolenaar
Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
2011-05-25updated for version 7.3.201Bram Moolenaar
Problem: "} else" still causes following lines to be indented too much. Solution: Better detection for the "else" block. (Lech Lorens)