Lines Matching refs:items
283 If you do want to keep items, use: >
420 To ignore any remaining items: >
825 deleting items at the current or previous item. In Vim9 script it just uses
826 the index, if items are deleted then items in the list will be skipped.
1351 the script is local, unless exported. Those exported items, and only those
1352 items, can then be imported in another script.
1427 The exported items can be imported individually in another Vim9 script: >
1431 To import multiple items at the same time: >
1438 To import all exported items under a specific identifier: >
1446 `:import` can also be used in legacy Vim script. The imported items still
1449 `:import` can not be used in a function. Imported items are intended to exist
1467 or indirectly) imports the current script, then items defined after the
1469 result in undefined items.
1483 2. In the autoload script do the actual work. You can import items from
1495 items and any private items. >
1655 Specific items from TypeScript we avoid:
1767 exports selected items and keeps the rest local.
1784 When sourcing a Vim9 script from a legacy script, only the items defined
1785 globally can be used, not the exported items. Alternatives considered:
1786 - All the exported items become available as script-local items. This makes
1787 it uncontrollable what items get defined and likely soon leads to trouble.
1788 - Use the exported items and make them global. Disadvantage is that it's then
1806 An alternative would be to first scan through the file to locate items and