summaryrefslogtreecommitdiffstats
path: root/src/testdir/test_autoload.vim
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-12patch 8.2.1432: various inconsistencies in test filesv8.2.1432Bram Moolenaar
Problem: Various inconsistencies in test files. Solution: Add modelines where they were missing. Use Check commands instead of silently skipping over tests. Adjust indents and comments. (Ken Takata, closes #6695)
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.