1
0
forked from aniani/vim

runtime(doc): list of new/changed features in version9.txt

closes: #13753

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Yegappan Lakshmanan 2023-12-24 11:01:23 +01:00 committed by Christian Brabandt
parent ea9964a36f
commit 49cdd629a3
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
5 changed files with 119 additions and 53 deletions

View File

@ -1,4 +1,4 @@
*builtin.txt* For Vim version 9.0. Last change: 2023 Dec 14 *builtin.txt* For Vim version 9.0. Last change: 2023 Dec 24
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -5163,8 +5163,12 @@ items({dict}) *items()*
for [key, value] in items(mydict) for [key, value] in items(mydict)
echo key .. ': ' .. value echo key .. ': ' .. value
endfor endfor
<
A List or a String argument is also supported. In these
cases, items() returns a List with the index and the value at
the index.
< Can also be used as a |method|: > Can also be used as a |method|: >
mydict->items() mydict->items()
job_ functions are documented here: |job-functions-details| job_ functions are documented here: |job-functions-details|

View File

@ -1,4 +1,4 @@
*map.txt* For Vim version 9.0. Last change: 2023 May 28 *map.txt* For Vim version 9.0. Last change: 2023 December 24
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -406,7 +406,7 @@ Note:
*E1255* *E1136* *E1255* *E1136*
<Cmd> and <ScriptCmd> commands must terminate, that is, they must be followed <Cmd> and <ScriptCmd> commands must terminate, that is, they must be followed
by <CR> in the {rhs} of the mapping definition. |Command-line| mode is never by <CR> in the {rhs} of the mapping definition. |Command-line| mode is never
entered. entered. To use a literal <CR> in the {rhs}, use |<lt>|.
1.3 MAPPING AND MODES *:map-modes* 1.3 MAPPING AND MODES *:map-modes*

View File

@ -11039,6 +11039,7 @@ vim9 vim9.txt /*vim9*
vim9-access-modes vim9class.txt /*vim9-access-modes* vim9-access-modes vim9class.txt /*vim9-access-modes*
vim9-autoload vim9.txt /*vim9-autoload* vim9-autoload vim9.txt /*vim9-autoload*
vim9-boolean vim9.txt /*vim9-boolean* vim9-boolean vim9.txt /*vim9-boolean*
vim9-class vim9class.txt /*vim9-class*
vim9-classes vim9.txt /*vim9-classes* vim9-classes vim9.txt /*vim9-classes*
vim9-const vim9.txt /*vim9-const* vim9-const vim9.txt /*vim9-const*
vim9-curly vim9.txt /*vim9-curly* vim9-curly vim9.txt /*vim9-curly*

View File

@ -1,4 +1,4 @@
*version9.txt* For Vim version 9.0. Last change: 2023 Dec 21 *version9.txt* For Vim version 9.0. Last change: 2023 Dec 24
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -29634,7 +29634,7 @@ Solution: Use K_ZERO instead. Use macros instead of hard coded values.
Files: src/getchar.c, src/misc2.c, src/testdir/test_termcodes.vim Files: src/getchar.c, src/misc2.c, src/testdir/test_termcodes.vim
Patch 8.2.4830 Patch 8.2.4830
Problem: Possible endless loop if there is unused typahead. Problem: Possible endless loop if there is unused typeahead.
Solution: Only loop when the typeahead changed. Solution: Only loop when the typeahead changed.
Files: src/channel.c Files: src/channel.c
@ -31689,8 +31689,8 @@ are many minor improvements.
Vim9 classes Vim9 classes
------------ ------------
Support for classes and objects in a Vim9 script are added. The following Support for classes and objects in a Vim9 script are added. This is described
features are supported: in |vim9-class|. The following features are supported:
- Defining classes and instantiating objects - Defining classes and instantiating objects
- Multiple constructors - Multiple constructors
- Class variables and methods - Class variables and methods
@ -31706,15 +31706,75 @@ Support for creating a type alias for an existing type is added.
Virtual text Virtual text
------------ ------------
Support for adding |virtual-text| to a buffer is added. This is useful for
language server features (e.g. inlay hints)
Smooth Scroll Smooth Scroll
------------- -------------
Support for scrolling text using screen lines instead of file lines is added.
Refer to the 'smoothscroll' option.
EditorConfig and JSON formatting plugins are included.
OpenVMS x86_64 platform port.
Other improvements *new-other-9.1* Other improvements *new-other-9.1*
------------------ ------------------
- Support for undercurl (|t_Ce|), double underline (|t_Us|), dotted underline
(|t_ds|) and dashed underline (|t_Ds|) termcap entries.
- The 'fillchars' option is now a global-local option.
- The |vertical| and |horizontal| modifiers can be used with ":wincmd ="
command to equalize windows vertically or horizontally.
- |:defer| command to defer the execution of a function till the end of a
function.
- Support for closing a tab page using the middle mouse button.
- Sound support in MacOS.
- The |prop_remove()| function can now remove multiple text properties.
- The |items()| function now supports a List or a String argument.
- Command line completion support for |:runtime| command.
- Support for multiple "%=" items in 'statusline'
- Support for the PmenuKind, PmenuKindSel, PmenuExtra and PmenuExtraSel
highlight groups.
- xxd: support for using colors in the hex dump output
- xxd: reversing a bit dump
- Text properties can override 'cursorline' highlight.
- Support for echoing messages in a popup window |:echowindow|.
- Control scroll behavior when spliting windows 'splitkeep'.
- Specify the character used for the last window line 'fillchars'
- Support for mouse scrolling in the MS-Windows console.
- Support for using different keyboard protocols 'keyprotocol'
- Support for UTF-16 string index.
- Quickfix list items can have associated custom user data.
- |reverse()| supports reversing a string
- 'switchbuf' is used by more commands.
- |undotree()| can be used with any buffer.
- |printf()| supports positional arguments
- Support for custom completion using |getcompletion()|
- Support for Python3 stable ABI
- Use |jumplist| like a stack
- Command-line completion support for option values
- Support for writing extended attributes in Linux
- 'errorformat' supports parsing a buffer number (|%b|)
- Termdebug: Support for variables window, moving up/down the stack frames and
setting temporary breakpoints
Changed *changed-9.1* Changed *changed-9.1*
------- -------
- The features |++builtin_terms|, |+cmdline_info|, |+cmdwin|, |+file_in_path|,
|+float|, |+path_extra|, |+textobjects|, |+wildignore| and |+wildmenu| are
available in all the builds.
- Support for Windows-XP is dropped.
- The "small" and "big" builds are dropped in favor of "tiny" and "huge"
builds.
- Support for VisVim is removed.
- The optional Content-Type header is removed from the LSP messages.
- |charidx()| returns the character length when the index is one more than the
last byte index.
- Ctrl-Q works like Ctrl-V in replace mode.
- |popup_filter_menu()| now wraps around.
- |g<End>| now jumps to the last non-blank character
- dot and hypen are supported in highlight group names
- |executable()| resolves symlinks on MS-Windows.
Added *added-9.1* Added *added-9.1*
----- -----
@ -31763,6 +31823,7 @@ Commands: ~
Options: ~ Options: ~
'endoffile' write CTRL-Z at end of the file
'jumpoptions' specifies how jumping is done 'jumpoptions' specifies how jumping is done
'keyprotocol' what keyboard protocol to use for what terminal 'keyprotocol' what keyboard protocol to use for what terminal
'lispoptions' changes how Lisp indenting is done 'lispoptions' changes how Lisp indenting is done
@ -31778,6 +31839,9 @@ The list of patches that got included since 9.0.0. This includes all the new
features, but does not include runtime file changes (syntax, indent, ftplugin, features, but does not include runtime file changes (syntax, indent, ftplugin,
documentation, etc.) documentation, etc.)
Note: authorship and the list of changed files is left out and only visible
through `git log` for each commit.
Patch 9.0.0001 Patch 9.0.0001
Problem: Travis CI is no longer used. Problem: Travis CI is no longer used.
Solution: Delete the Travis CI configuration. (Hugo Osvaldo Barrera, Solution: Delete the Travis CI configuration. (Hugo Osvaldo Barrera,
@ -31853,7 +31917,7 @@ Problem: Accessing memory beyond the end of the line.
Solution: Stop Visual mode when closing a window. Solution: Stop Visual mode when closing a window.
Patch 9.0.0018 Patch 9.0.0018
Problem: Going over the end of the typahead. Problem: Going over the end of the typeahead.
Solution: Put a NUL after the typeahead. Solution: Put a NUL after the typeahead.
Patch 9.0.0019 Patch 9.0.0019
@ -32059,7 +32123,7 @@ Problem: Cross-compiling doesn't work because of timer_create check.
Solution: Use AC_CACHE_CHECK(). (Richard Purdie, closes #10777) Solution: Use AC_CACHE_CHECK(). (Richard Purdie, closes #10777)
Patch 9.0.0066 Patch 9.0.0066
Problem: Switching window uneccarily when getting buffer options. Problem: Switching window unnecessarily when getting buffer options.
Solution: Do not switch window when getting buffer options. (closes #10767) Solution: Do not switch window when getting buffer options. (closes #10767)
Patch 9.0.0067 Patch 9.0.0067
@ -32201,7 +32265,7 @@ Solution: Allocate a buffer if needed.
Patch 9.0.0098 Patch 9.0.0098
Problem: missing include file in timer_create configure check. Problem: missing include file in timer_create configure check.
Solution: Inlucde stdlib.h. Solution: Include stdlib.h.
Patch 9.0.0099 Patch 9.0.0099
Problem: Scrollback can be wrong after redrawing the command line. Problem: Scrollback can be wrong after redrawing the command line.
@ -32493,7 +32557,7 @@ Solution: Keep an array of property types sorted on ID.
Patch 9.0.0166 Patch 9.0.0166
Problem: When using text properties the line text length is computed twice. Problem: When using text properties the line text length is computed twice.
Solution: If the text lenght was already computed don't do it again. Solution: If the text length was already computed don't do it again.
Patch 9.0.0167 Patch 9.0.0167
Problem: Checking for text properties could be a bit more efficient. Problem: Checking for text properties could be a bit more efficient.
@ -32577,7 +32641,7 @@ Problem: Virtual text prop highlight continues after truncation.
Solution: Recompute the length of attributes. Solution: Recompute the length of attributes.
Patch 9.0.0185 Patch 9.0.0185
Problem: Virtual text does not show if tehre is a text prop at same Problem: Virtual text does not show if there is a text prop at same
position. (Ben Jackson) position. (Ben Jackson)
Solution: Fix the sorting of properties. (closes #10879) Solution: Fix the sorting of properties. (closes #10879)
@ -32629,7 +32693,7 @@ Problem: Cursor displayed in wrong position after removing text prop. (Ben
Solution: Invalidate the cursor position. (closes #10898) Solution: Invalidate the cursor position. (closes #10898)
Patch 9.0.0195 Patch 9.0.0195
Problem: Metafun files are not recogized. Problem: Metafun files are not recognized.
Solution: Add filetype detection patterns. Solution: Add filetype detection patterns.
Patch 9.0.0196 Patch 9.0.0196
@ -32649,7 +32713,7 @@ Problem: Cursor position wrong with two right-aligned virtual texts.
Solution: Add the padding for right-alignment. (issue #10906) Solution: Add the padding for right-alignment. (issue #10906)
Patch 9.0.0200 Patch 9.0.0200
Problem: cursor in a wrong positoin if 'wrap' is off and using two right Problem: cursor in a wrong position if 'wrap' is off and using two right
aligned text props in one line. aligned text props in one line.
Solution: Count an extra line for a right aligned text property after a Solution: Count an extra line for a right aligned text property after a
below or right aligned text property. (issue #10909) below or right aligned text property. (issue #10909)
@ -33089,7 +33153,7 @@ Solution: Ignore deprecation warnings. (closes #11002)
Patch 9.0.0303 Patch 9.0.0303
Problem: It is not easy to get information about a script. Problem: It is not easy to get information about a script.
Solution: Make getscriptinf() return the version. When selecting a specific Solution: Make getscriptinfo() return the version. When selecting a specific
script return functions and variables. (Yegappan Lakshmanan, script return functions and variables. (Yegappan Lakshmanan,
closes #10991) closes #10991)
@ -33118,7 +33182,7 @@ Problem: Invalid memory access when cmdheight is zero.
Solution: Check index in w_lines is smaller than Rows. Solution: Check index in w_lines is smaller than Rows.
Patch 9.0.0310 Patch 9.0.0310
Problem: Output of :messages dissappears when cmdheight is zero. Problem: Output of :messages disappears when cmdheight is zero.
Solution: Do not use the messages window for :messages. Make Esc close the Solution: Do not use the messages window for :messages. Make Esc close the
messages window. messages window.
@ -33339,7 +33403,7 @@ Solution: Do not check breakpoint for non-existing line.
Patch 9.0.0361 Patch 9.0.0361
Problem: Removing a listener may result in a memory leak and remove Problem: Removing a listener may result in a memory leak and remove
subsequent listerns. subsequent listeners.
Solution: Init the "prev" pointer only once. (Yegappan Lakshmanan, Solution: Init the "prev" pointer only once. (Yegappan Lakshmanan,
closes #11039) closes #11039)
@ -33519,7 +33583,7 @@ Problem: CI uses older clang version.
Solution: Switch from clang 14 to 15. (closes #11066) Solution: Switch from clang 14 to 15. (closes #11066)
Patch 9.0.0402 Patch 9.0.0402
Problem: Javascript module files are not recoginzed. Problem: Javascript module files are not recognized.
Solution: Recognize "*.jsm" files as Javascript. (Brett Holman, Solution: Recognize "*.jsm" files as Javascript. (Brett Holman,
closes #11069) closes #11069)
@ -33697,7 +33761,7 @@ Problem: Closure in for loop test fails on some systems.
Solution: Do not wait for the ruler to show up. (issue #11106) Solution: Do not wait for the ruler to show up. (issue #11106)
Patch 9.0.0442 Patch 9.0.0442
Problem: Virtual text "above" doesn't handel line numbers. Problem: Virtual text "above" doesn't handle line numbers.
Solution: Take the left column offset into account. (issue #11084) Solution: Take the left column offset into account. (issue #11084)
Also make padding work. Also make padding work.
@ -33811,7 +33875,7 @@ Problem: Build failure.
Solution: Add missing change. Solution: Add missing change.
Patch 9.0.0468 Patch 9.0.0468
Problem: Exectution stack underflow without the +eval feature. (Dominique Problem: Execution stack underflow without the +eval feature. (Dominique
Pellé) Pellé)
Solution: Add to execution stack without FEAT_EVAL. (closes #11135) Solution: Add to execution stack without FEAT_EVAL. (closes #11135)
@ -33924,7 +33988,7 @@ Problem: Perl test fails.
Solution: Remove remaining FEAT_EVAL. Solution: Remove remaining FEAT_EVAL.
Patch 9.0.0494 Patch 9.0.0494
Problem: Small build misses float function declaraitons. Problem: Small build misses float function declarations.
Solution: Adjust #ifdefs. Solution: Adjust #ifdefs.
Patch 9.0.0495 Patch 9.0.0495
@ -34376,7 +34440,7 @@ Solution: Recognize GYP files. (closes #11242)
Patch 9.0.0601 Patch 9.0.0601
Problem: Too much indent. Problem: Too much indent.
Solution: Return out early from a funtion. (Yegappan Lakshmanan, Solution: Return out early from a function. (Yegappan Lakshmanan,
close #11238) close #11238)
Patch 9.0.0602 Patch 9.0.0602
@ -34605,7 +34669,7 @@ Problem: 'smoothscroll' not tested with 'number' and "n" in 'cpo'.
Solution: Add tests, fix uncovered problem. Solution: Add tests, fix uncovered problem.
Patch 9.0.0653 Patch 9.0.0653
Problem: BS and DEL do not work properly in an interacive shell. (Gary Problem: BS and DEL do not work properly in an interactive shell. (Gary
Johnson) Johnson)
Solution: Adjust the length for replaced codes. Solution: Adjust the length for replaced codes.
@ -35078,7 +35142,7 @@ Problem: No autocmd event for changing text in a terminal window.
Solution: Add TextChangedT. (Shougo Matsushita, closes #11366) Solution: Add TextChangedT. (Shougo Matsushita, closes #11366)
Patch 9.0.0757 Patch 9.0.0757
Problem: Line number not visisble with 'smoothscroll', 'nu' and 'rnu'. Problem: Line number not visible with 'smoothscroll', 'nu' and 'rnu'.
Solution: Put the ">>>" after the line number instead of on top. Solution: Put the ">>>" after the line number instead of on top.
Patch 9.0.0758 Patch 9.0.0758
@ -35135,7 +35199,7 @@ Solution: Free memory when it's a bit much. (Yegappan Lakshmanan,
closes #11379) closes #11379)
Patch 9.0.0771 Patch 9.0.0771
Problem: Cannot always tell the difference beween tex and rexx files. Problem: Cannot always tell the difference between tex and rexx files.
Solution: Recognize tex by a leading backslash. (Martin Tournoij, Solution: Recognize tex by a leading backslash. (Martin Tournoij,
closes #11380) closes #11380)
@ -35144,7 +35208,7 @@ Problem: The libvterm code is outdated.
Solution: Include libvterm changes from revision 790 to 801. Solution: Include libvterm changes from revision 790 to 801.
Patch 9.0.0773 Patch 9.0.0773
Problem: Huge build on macos uses dynamic Perl. Problem: Huge build on MacOS uses dynamic Perl.
Solution: Use built-in Perl, uninstall the brew one. (closes #11382) Solution: Use built-in Perl, uninstall the brew one. (closes #11382)
Patch 9.0.0774 Patch 9.0.0774
@ -35435,7 +35499,7 @@ Solution: Only report failure when appending something. (closes #11498)
Patch 9.0.0838 Patch 9.0.0838
Problem: Compiler warnings for unused variables. Problem: Compiler warnings for unused variables.
Solution: Addjust #ifdef and remove unused variables. (John Marriott) Solution: Adjust #ifdef and remove unused variables. (John Marriott)
Patch 9.0.0839 Patch 9.0.0839
Problem: Test may fail depending on sequence of events. Problem: Test may fail depending on sequence of events.
@ -35832,7 +35896,7 @@ Solution: When dict_add() fails then don't call hash_remove().
Patch 9.0.0927 Patch 9.0.0927
Problem: Coverity warns for using a NULL pointer. Problem: Coverity warns for using a NULL pointer.
Solution: Check for memory allocaion failure. Solution: Check for memory allocation failure.
Patch 9.0.0928 Patch 9.0.0928
Problem: Using Ruby LDFLAGS may cause build problems. Problem: Using Ruby LDFLAGS may cause build problems.
@ -37276,7 +37340,7 @@ Solution: Find the object method and generate code to call it.
Patch 9.0.1251 Patch 9.0.1251
Problem: Checking returned value of ga_grow() is inconsistent. Problem: Checking returned value of ga_grow() is inconsistent.
Solution: Check for FAIL instaed of "not OK". (Yegappan Lakshmanan, Solution: Check for FAIL instead of "not OK". (Yegappan Lakshmanan,
closes #11897) closes #11897)
Patch 9.0.1252 Patch 9.0.1252
@ -38160,7 +38224,7 @@ Solution: Remove EVAL_CONSTANT. (closes #12252)
Patch 9.0.1453 Patch 9.0.1453
Problem: Typos in source code and tests. Problem: Typos in source code and tests.
Solution: Fi the typos. (Dominique Pellé, closes #12217) Solution: Fix the typos. (Dominique Pellé, closes #12217)
Patch 9.0.1454 Patch 9.0.1454
Problem: Code indenting is confused by macros. Problem: Code indenting is confused by macros.
@ -38601,7 +38665,7 @@ Solution: Add patterns for USD filetype. (Colin Kennedy, closes #12370)
Patch 9.0.1550 Patch 9.0.1550
Problem: In cmdline window S-Tab does not select previous completion. Problem: In cmdline window S-Tab does not select previous completion.
(Maxim Kim) (Maxim Kim)
Solution: Add a mappint for S-Tab. (closes #12116) Solution: Add a mapping for S-Tab. (closes #12116)
Patch 9.0.1551 Patch 9.0.1551
Problem: Position of marker for 'smoothscroll' not computed correctly. Problem: Position of marker for 'smoothscroll' not computed correctly.
@ -38914,7 +38978,7 @@ Solution: Fix output of text field after pattern field in quickfix buffer.
Patch 9.0.1617 Patch 9.0.1617
Problem: charidx() and utf16idx() result is not consistent with byteidx(). Problem: charidx() and utf16idx() result is not consistent with byteidx().
Solution: When the index is equal to the length of the text return the Solution: When the index is equal to the length of the text return the
lenght of the text instead of -1. (Yegappan Lakshmanan, length of the text instead of -1. (Yegappan Lakshmanan,
closes #12503) closes #12503)
Patch 9.0.1618 Patch 9.0.1618
@ -39309,7 +39373,7 @@ Problem: Cannot wrap around in popup_filter_menu()
Solution: Allow to wrap around by default Solution: Allow to wrap around by default
Patch 9.0.1708 Patch 9.0.1708
Problem: getcompletion() failes for user-defined commands Problem: getcompletion() fails for user-defined commands
Solution: set context for completion function Solution: set context for completion function
Patch 9.0.1709 Patch 9.0.1709
@ -39611,7 +39675,7 @@ Solution: add space
Patch 9.0.1779 Patch 9.0.1779
Problem: Need more state() tests Problem: Need more state() tests
Solution: Add a few more tests for operater pending mode and register Solution: Add a few more tests for operator pending mode and register
yank command yank command
Patch 9.0.1780 Patch 9.0.1780
@ -39670,8 +39734,8 @@ Solution: Drop the Content-Type header from all messages, because we use
the default value anyway. the default value anyway.
Patch 9.0.1791 Patch 9.0.1791
Problem: No tests for the termdebug plugin Problem: No tests for the Termdebug plugin
Solution: Add some simple tests for the termdebug plugin Solution: Add some simple tests for the Termdebug plugin
Patch 9.0.1792 Patch 9.0.1792
Problem: Normal mode "gM", "gj", "gk" commands behave incorrectly with Problem: Normal mode "gM", "gj", "gk" commands behave incorrectly with
@ -39745,11 +39809,11 @@ Problem: runtime: crystal scripts not recognised
Solution: Filetype detect Crystal scripts by shebang line Solution: Filetype detect Crystal scripts by shebang line
Patch 9.0.1808 Patch 9.0.1808
Problem: termdebug: Typo in termdebug test Problem: Termdebug: Typo in Termdebug test
Solution: fix the typos Solution: fix the typos
Patch 9.0.1809 Patch 9.0.1809
Problem: termdebug test flayk Problem: Termdebug test flaky
Solution: wait slightly longer Solution: wait slightly longer
Patch 9.0.1810 Patch 9.0.1810
@ -40010,7 +40074,7 @@ Problem: test_crash still fails for circle ci
Solution: give even more time to complete Solution: give even more time to complete
Patch 9.0.1869 Patch 9.0.1869
Problem: Coverity warns about unitialized var Problem: Coverity warns about uninitialized var
Solution: initialize it Solution: initialize it
Patch 9.0.1870 Patch 9.0.1870
@ -40097,7 +40161,7 @@ Problem: Vim9 static tests fail
Solution: Fix tests, make CI happy ;) Solution: Fix tests, make CI happy ;)
Patch 9.0.1890 Patch 9.0.1890
Problem: Vim9: lookup code for class/object repaeated Problem: Vim9: lookup code for class/object repeated
Solution: Refactor and make use of lookup functions Solution: Refactor and make use of lookup functions
Patch 9.0.1891 Patch 9.0.1891
@ -40131,7 +40195,7 @@ Solution: Check in error condition, if .= was attempted and in that case
Patch 9.0.1898 Patch 9.0.1898
Problem: Vim9: restrict access to static vars and methods Problem: Vim9: restrict access to static vars and methods
Solution: Class members are accesible only from the class where they are Solution: Class members are accessible only from the class where they are
defined. defined.
Patch 9.0.1899 Patch 9.0.1899
@ -40776,12 +40840,12 @@ Problem: Test_cq_zero_exmode fails without channel feature
Solution: Make the test check the channel feature Solution: Make the test check the channel feature
Patch 9.0.2043 Patch 9.0.2043
Problem: Vim9: issue with funcref assignmentand varargs Problem: Vim9: issue with funcref assignment and varargs
Solution: Fix funcref type checking Solution: Fix funcref type checking
Patch 9.0.2044 Patch 9.0.2044
Problem: Vim9: exceptions confuse defered functions Problem: Vim9: exceptions confuse defered functions
Solution: save and restore exception state when calling defered Solution: save and restore exception state when calling deferred
functions functions
Patch 9.0.2045 Patch 9.0.2045
@ -41031,7 +41095,7 @@ Problem: Terminal control codes¹ are sent even when silent
Solution: Block any terminal codes when silent mode is on Solution: Block any terminal codes when silent mode is on
Patch 9.0.2100 Patch 9.0.2100
Problem: CI: test_termdebug fails Problem: CI: test_Termdebug fails
Solution: only test for a changed winlayout, if the window Solution: only test for a changed winlayout, if the window
width actually changed width actually changed
@ -41073,7 +41137,7 @@ Solution: break out, if count is too large
Patch 9.0.2110 Patch 9.0.2110
Problem: [security]: overflow in ex address parsing Problem: [security]: overflow in ex address parsing
Solution: Verify that lnum is positive, before substracting from Solution: Verify that lnum is positive, before subtracting from
LONG_MAX LONG_MAX
Patch 9.0.2111 Patch 9.0.2111
@ -41209,7 +41273,7 @@ Solution: validate window pointer before calling win_enter()
Patch 9.0.2141 Patch 9.0.2141
Problem: [security]: buffer-overflow in suggest_trie_walk Problem: [security]: buffer-overflow in suggest_trie_walk
Solution: Check n before using it as index into byts array Solution: Check n before using it as index into bytes array
Patch 9.0.2142 Patch 9.0.2142
Problem: [security]: stack-buffer-overflow in option callback functions Problem: [security]: stack-buffer-overflow in option callback functions
@ -41296,7 +41360,7 @@ Solution: Modify `instanceof()` to use varargs instead of list
Patch 9.0.2161 Patch 9.0.2161
Problem: Vim9: not able to use imported interfaces and classes Problem: Vim9: not able to use imported interfaces and classes
Solution: Detect imported class/interfaces names correclty Solution: Detect imported class/interfaces names correctly
Patch 9.0.2162 Patch 9.0.2162
Problem: Vim9: type documentation out-dated Problem: Vim9: type documentation out-dated

View File

@ -1,13 +1,10 @@
*vim9class.txt* For Vim version 9.0. Last change: 2023 Dec 14 *vim9class.txt* For Vim version 9.0. Last change: 2023 Dec 24
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
NOTE - This is not finished yet, anything can still change! - NOTE Vim9 classes, objects, interfaces, types and enums. *vim9-class*
Vim9 classes, objects, interfaces, types and enums.
1. Overview |Vim9-class-overview| 1. Overview |Vim9-class-overview|
2. A simple class |Vim9-simple-class| 2. A simple class |Vim9-simple-class|