@@ -105,7 +105,7 @@ ch_evalraw({handle}, {string} [, {options}])
105105 any evaluate {string} on raw {handle}
106106ch_getbufnr({handle} , {what} ) Number get buffer number for {handle} /{what}
107107ch_getjob({channel} ) Job get the Job of {channel}
108- ch_info({handle} ) String info about channel {handle}
108+ ch_info({handle} ) Dict info about channel {handle}
109109ch_listen({address} [, {options} ])
110110 Channel listen on {address}
111111ch_log({msg} [, {handle} ]) none write {msg} in the channel log file
@@ -351,7 +351,7 @@ inputsecret({prompt} [, {text}])
351351insert({object} , {item} [, {idx} ])
352352 List insert {item} in {object}
353353 [before {idx} ]
354- instanceof({object} , {class} ) Number | TRUE | if {object} is an instance of
354+ instanceof({object} , {class} ) Bool | TRUE | if {object} is an instance of
355355 {class}
356356interrupt() none interrupt script execution
357357invert({expr} ) Number bitwise invert
@@ -455,8 +455,8 @@ popup_clear() none close all popup windows
455455popup_close({id} [, {result} ]) none close popup window {id}
456456popup_create({what} , {options} ) Number create a popup window
457457popup_dialog({what} , {options} ) Number create a popup window used as a dialog
458- popup_filter_menu({id} , {key} ) Number filter for a menu popup window
459- popup_filter_yesno({id} , {key} ) Number filter for a dialog popup window
458+ popup_filter_menu({id} , {key} ) Bool filter for a menu popup window
459+ popup_filter_yesno({id} , {key} ) Bool filter for a dialog popup window
460460popup_findecho() Number get window ID of popup for `:echowin`
461461popup_findinfo() Number get window ID of info popup window
462462popup_findpreview() Number get window ID of preview popup window
@@ -531,7 +531,7 @@ reltimefloat({time}) Float turn the time value into a Float
531531reltimestr({time} ) String turn time value into a String
532532remote_expr({server} , {string} [, {idvar} [, {timeout} ]])
533533 String send expression
534- remote_foreground({server} ) Number bring Vim server to the foreground
534+ remote_foreground({server} ) none bring Vim server to the foreground
535535remote_peek({serverid} [, {retvar} ])
536536 Number check for reply string
537537remote_read({serverid} [, {timeout} ])
@@ -642,7 +642,7 @@ sound_playfile({path} [, {callback}])
642642 Number play sound file {path}
643643sound_stop({id} ) none stop playing sound {id}
644644soundfold({word} ) String sound-fold {word}
645- spellbadword() String badly spelled word at cursor
645+ spellbadword() List badly spelled word at cursor
646646spellsuggest({word} [, {max} [, {capital} ]])
647647 List spelling suggestions
648648split({expr} [, {pat} [, {keepempty} ]])
@@ -746,11 +746,11 @@ test_autochdir() none enable 'autochdir' during startup
746746test_feedinput({string} ) none add key sequence to input buffer
747747test_garbagecollect_now() none free memory right now for testing
748748test_garbagecollect_soon() none free memory soon for testing
749- test_getvalue({string} ) any get value of an internal variable
749+ test_getvalue({string} ) Number get value of an internal variable
750750test_gui_event({event} , {args} ) bool generate a GUI event for testing
751751test_ignore_error({expr} ) none ignore a specific error
752752test_mswin_event({event} , {args} )
753- bool generate MS-Windows event for testing
753+ Bool generate MS-Windows event for testing
754754test_null_blob() Blob null value for testing
755755test_null_channel() Channel null value for testing
756756test_null_dict() Dict null value for testing
@@ -787,7 +787,7 @@ tuple2list({tuple}) List turn {tuple} of items into a list
787787type({expr} ) Number type of value {expr}
788788typename({expr} ) String representation of the type of {expr}
789789undofile({name} ) String undo file name for {name}
790- undotree([{buf} ]) List undo file tree for buffer {buf}
790+ undotree([{buf} ]) Dict undo file tree for buffer {buf}
791791uniq({list} [, {func} [, {dict} ]])
792792 List remove adjacent duplicates from a list
793793uri_decode({string} ) String URI-decode a string
@@ -6268,7 +6268,7 @@ instanceof({object}, {class}) *instanceof()* *E614* *E616* *E693*
62686268< Can also be used as a | method | : >
62696269 myobj->instanceof(mytype)
62706270<
6271- Return type: | Number |
6271+ Return type: | vim9-boolean |
62726272
62736273
62746274interrupt() *interrupt()*
@@ -9049,7 +9049,7 @@ remote_foreground({server}) *remote_foreground()*
90499049 Can also be used as a | method | : >
90509050 ServerName()->remote_foreground()
90519051<
9052- Return type: | Number |
9052+ Return type: void
90539053
90549054 {only in the Win32, Motif and GTK GUI versions and the
90559055 Win32 console version}
0 commit comments