summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_functions.vim
AgeCommit message (Collapse)Author
2017-03-02patch 8.0.0401: test fails with missing balloon featurev8.0.0401Bram Moolenaar
Problem: Test fails with missing balloon feature. Solution: Add check for balloon feature.
2017-03-02patch 8.0.0399: crash when using balloon_show() when not supportedv8.0.0399Bram Moolenaar
Problem: Crash when using balloon_show() when not supported. (Hirohito Higashi) Solution: Check for balloonEval not to be NULL. (Ken Takata)
2017-02-17patch 8.0.0335: functions test failsv8.0.0335Bram Moolenaar
Problem: Functions test fails. Solution: Use the right buffer number.
2017-02-17patch 8.0.0334: can't access b:changedtick from a dict referencev8.0.0334Bram Moolenaar
Problem: Can't access b:changedtick from a dict reference. Solution: Make changedtick a member of the b: dict. (inspired by neovim #6112)
2017-02-05patch 8.0.0306: mode() not sufficiently testedv8.0.0306Bram Moolenaar
Problem: mode() not sufficiently tested. Solution: Add more tests. (Yegappan Lakshmanan)
2017-02-01patch 8.0.0283: mode() does not indicate Insert mode completionv8.0.0283Bram Moolenaar
Problem: The return value of mode() does not indicate that completion is active in Replace and Insert mode. (Zhen-Huan (Kenny) Hu) Solution: Add "c" or "x" for two kinds of completion. (Yegappan Lakshmanan, closes #1397) Test some more modes.
2017-01-29patch 8.0.0261: not enough test coverage for eval functionsv8.0.0261Bram Moolenaar
Problem: Not enough test coverage for eval functions. Solution: Add more tests. (Dominique Pelle, closes #1420)
2017-01-26patch 8.0.0243: tolower() does not work if the byte count changesv8.0.0243Bram Moolenaar
Problem: When making a character lower case with tolower() changes the byte cound, it is not made lower case. Solution: Add strlow_save(). (Dominique Pelle, closes #1406)
2017-01-10patch 8.0.0167: str2nr()/str2float() fail with negative valuesv8.0.0167Bram Moolenaar
Problem: str2nr() and str2float() do not always work with negative values. Solution: Be more flexible about handling signs. (LemonBoy, closes #1332) Add more tests.