runtime(doc): update documentation

closes: #17180

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Hirohito Higashi
2025-04-21 19:39:15 +02:00
committed by Christian Brabandt
parent b753d80e59
commit 31b78cce6e
2 changed files with 3 additions and 4 deletions

View File

@ -1111,7 +1111,7 @@ Command line: *command-line-functions*
getcmdwintype() return the current command-line window type getcmdwintype() return the current command-line window type
getcompletion() list of command-line completion matches getcompletion() list of command-line completion matches
fullcommand() get full command name fullcommand() get full command name
cmdcomplete_info() get current completion information cmdcomplete_info() get command-line completion information
Quickfix and location lists: *quickfix-functions* Quickfix and location lists: *quickfix-functions*
getqflist() list of quickfix errors getqflist() list of quickfix errors

View File

@ -1,4 +1,4 @@
*vim9class.txt* For Vim version 9.1. Last change: 2025 Apr 13 *vim9class.txt* For Vim version 9.1. Last change: 2025 Apr 21
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar
@ -1067,8 +1067,7 @@ The above enum definition is equivalent to the following class definition: >
public const ordinal: number public const ordinal: number
endclass endclass
< <
A enum can contain object variables and methods just like a regular A enum can contain object variables and methods just like a regular class: >
class: >
enum Color enum Color
Cyan([0, 255, 255]), Cyan([0, 255, 255]),