summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_eval.ok
AgeCommit message (Collapse)Author
2016-01-16patch 7.4.1105v7.4.1105Bram Moolenaar
Problem: When using slices there is a mixup of variable name and namespace. Solution: Recognize variables that can't be a namespace. (Hirohito Higashi)
2015-02-03updated for version 7.4.612v7.4.612Bram Moolenaar
Problem: test_eval fails on Mac. Solution: Use the * register instead of the + register. (Jun Takimoto)
2015-01-27updated for version 7.4.608v7.4.608Bram Moolenaar
Problem: test_eval fails when the clipboard feature is missing. Solution: Skip part of the test. Reduce the text used.
2015-01-27updated for version 7.4.598v7.4.598Bram Moolenaar
Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. (Salman Halim) Solution: Change how clip_did_set_selection is used and add clipboard_needs_update and global_change_count. (Christian Brabandt)
2014-05-28updated for version 7.4.313v7.4.313Bram Moolenaar
Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos().
2014-05-28updated for version 7.4.310v7.4.310Bram Moolenaar
Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor.
2014-04-29updated for version 7.4.272v7.4.272Bram Moolenaar
Problem: Using just "$" does not cause an error message. Solution: Check for empty environment variable name. (Christian Brabandt)
2014-04-29updated for version 7.4.268v7.4.268Bram Moolenaar
Problem: Using exists() on a funcref for a script-local function does not work. Solution: Translate <SNR> to the special byte sequence. Add a test.
2014-04-24updated for version 7.4.265v7.4.265Bram Moolenaar
Problem: Can't call a global function with "g:" in an expression. Solution: Skip the "g:" when looking up the function.
2014-04-23updated for version 7.4.264v7.4.264Bram Moolenaar
Problem: Can't define a function starting with "g:". Can't assign a funcref to a buffer-local variable. Solution: Skip "g:" at the start of a function name. Don't check for colons when assigning to a variable.
2014-04-23updated for version 7.4.260v7.4.260Bram Moolenaar
Problem: It is possible to define a function with a colon in the name. It is possible to define a function with a lower case character if a "#" appears after the name. Solution: Disallow using a colon other than with "s:". Ignore "#" after the name.
2014-04-05updated for version 7.4.249v7.4.249Bram Moolenaar
Problem: Using setreg() with a list of numbers does not work. Solution: Use a separate buffer for numbers. (ZyX)
2014-04-02updated for version 7.4.243v7.4.243Bram Moolenaar
Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
2014-04-02updated for version 7.4.242v7.4.242Bram Moolenaar
Problem: getreg() does not distinguish between a NL used for a line break and a NL used for a NUL character. Solution: Add another argument to return a list. (ZyX)