summaryrefslogtreecommitdiffstats
path: root/runtime/doc/vim9.txt
AgeCommit message (Collapse)Author
2020-08-12patch 8.2.1435: Vim9: always converting to string for ".." leads to mistakesv8.2.1435Bram Moolenaar
Problem: Vim9: always converting to string for ".." leads to mistakes. Solution: Only automatically convert simple types.
2020-08-09patch 8.2.1408: Vim9: type casting not supportedv8.2.1408Bram Moolenaar
Problem: Vim9: type casting not supported. Solution: Introduce type casting.
2020-08-09patch 8.2.1407: Vim9: type of list and dict only depends on first itemv8.2.1407Bram Moolenaar
Problem: Vim9: type of list and dict only depends on first item. Solution: Use all items to decide about the type.
2020-08-07Update runtime files.Bram Moolenaar
2020-08-01patch 8.2.1342: Vim9: accidentally using "t" gives a confusing errorv8.2.1342Bram Moolenaar
Problem: Vim9: accidentally using "x" gives a confusing error. Solution: Disallow using ":t" in Vim9 script. (issue #6399)
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.
2020-07-28patch 8.2.1308: Vim9: accidentally using "x" causes Vim to exitv8.2.1308Bram Moolenaar
Problem: Vim9: accidentally using "x" causes Vim to exit. Solution: Disallow using ":x" or "xit" in Vim9 script. (closes #6399)
2020-07-26Update runtime files.Bram Moolenaar
2020-07-17patch 8.2.1227: Vim9: allowing both quoted and # comments is confusingv8.2.1227Bram Moolenaar
Problem: Vim9: allowing both quoted and # comments is confusing. Solution: Only support # comments in Vim9 script.
2020-07-10Update runtime filesBram Moolenaar
2020-06-30Runtime file updatesBram Moolenaar
2020-06-22patch 8.2.1042: Vim9: cannot put an operator on the next linev8.2.1042Bram Moolenaar
Problem: Vim9: cannot put an operator on the next line. Solution: Require a colon before a range to see if that causes problems.
2020-06-21Update runtime filesBram Moolenaar
2020-06-14Update runtime filesBram Moolenaar
2020-05-26Update runtime filesBram Moolenaar
2020-05-12Update runtime filesBram Moolenaar
2020-05-07Update runtime filesBram Moolenaar
2020-05-01Update runtime filesBram Moolenaar
2020-04-20Update runtime filesBram Moolenaar
2020-04-13patch 8.2.0567: Vim9: cannot put comments halfway expressionsv8.2.0567Bram Moolenaar
Problem: Vim9: cannot put comments halfway expressions. Solution: Support # comments in many places.
2020-04-12patch 8.2.0563: Vim9: cannot split a function linev8.2.0563Bram Moolenaar
Problem: Vim9: cannot split a function line. Solution: Continue in next line so long as the function isn't done.
2020-04-12patch 8.2.0562: Vim9: cannot split an expression into multiple linesv8.2.0562Bram Moolenaar
Problem: Vim9: cannot split an expression into multiple lines. Solution: Continue in next line after an operator.
2020-04-12patch 8.2.0561: Vim9: cannot split function call in multiple linesv8.2.0561Bram Moolenaar
Problem: Vim9: cannot split function call in multiple lines. Solution: Find more arguments in following lines.
2020-04-12patch 8.2.0555: Vim9: line continuation is not always neededv8.2.0555Bram Moolenaar
Problem: Vim9: line continuation is not always needed. Solution: Recognize continuation lines automatically in list and dict.
2020-04-10Update runtime filesBram Moolenaar
2020-04-03patch 8.2.0508: Vim9: func and partial types not done yetv8.2.0508Bram Moolenaar
Problem: Vim9: func and partial types not done yet Solution: Fill in details about func declaration, drop a separate partial declaration.
2020-03-14Update runtime filesBram Moolenaar
2020-03-01Update runtime filesBram Moolenaar
2020-02-29patch 8.2.0335: no completion for :disassemblev8.2.0335Bram Moolenaar
Problem: No completion for :disassemble. Solution: Make completion work. Also complete script-local functions if the name starts with "s:".
2020-02-26Update runtime files.Bram Moolenaar
2020-02-22patch 8.2.0298: Vim9 script: cannot start command with a string constantv8.2.0298Bram Moolenaar
Problem: Vim9 script: cannot start command with a string constant. Solution: Recognize expression starting with '('.
2020-02-21patch 8.2.0294: cannot use Ex command that is also a function namev8.2.0294Bram Moolenaar
Problem: Cannot use Ex command that is also a function name. Solution: Recognize an Ex command by a colon prefix.
2020-02-15Update runtime files.Bram Moolenaar
2020-02-04Update runtime files.Bram Moolenaar
2020-01-26patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar
Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.