summaryrefslogtreecommitdiffstats
path: root/src/testdir/sautest
AgeCommit message (Collapse)Author
2022-01-30patch 8.2.4265: autoload tests failsv8.2.4265Bram Moolenaar
Problem: Autoload tests fails. Solution: Use export instead of name with #.
2022-01-21patch 8.2.4168: disallowing empty function name breaks existing pluginsv8.2.4168Bram Moolenaar
Problem: Disallowing empty function name breaks existing plugins. Solution: Allow empty function name in legacy script.
2020-08-08patch 8.2.1398: autoload script sourced twice if sourced directlyv8.2.1398Bram Moolenaar
Problem: Autoload script sourced twice if sourced directly. Solution: Do not source an autoload script again. (issue #6644)
2020-07-29patch 8.2.1325: Vim9: using Vim9 script for autaload not testedv8.2.1325Bram Moolenaar
Problem: Vim9: using Vim9 script for autaload not tested. Solution: Add a test. Update help.
2019-08-04patch 8.1.1816: cannot use a user defined function as a methodv8.1.1816Bram Moolenaar
Problem: Cannot use a user defined function as a method. Solution: Pass the base as the first argument to the user defined function after "->". (partly by FUJIWARA Takuya)
2017-12-07patch 8.0.1378: autoload script sources itself when defining functionv8.0.1378Bram Moolenaar
Problem: Autoload script sources itself when defining function. Solution: Pass TFN_NO_AUTOLOAD to trans_function_name(). (Yasuhiro Matsumoto, closes #2423)
2017-12-07patch 8.0.1377: cannot call a dict function in autoloaded dictv8.0.1377Bram Moolenaar
Problem: Cannot call a dict function in autoloaded dict. Solution: Call get_lval() passing the read-only flag.
2017-11-05patch 8.0.1271: still too many old style testsv8.0.1271Bram Moolenaar
Problem: Still too many old style tests. Solution: Convert a few more tests to new style. (Yegappan Lakshmanan, closes #2290)
2014-02-05updated for version 7.4.167v7.4.167Bram Moolenaar
Problem: Fixes are not tested. Solution: Add a test for not autoloading on assignment. (Yukihiro Nakadaira)
2014-01-14updated for version 7.4.149v7.4.149Bram Moolenaar
Problem: Get E685 error when assigning a function to an autoload variable. (Yukihiro Nakadaira) Solution: Instead of having a global no_autoload variable, pass an autoload flag down to where it is used. (ZyX)