runtime(doc): Use ellipses for overlength example comments at :help vim9.txt
Commit: https://github.com/vim/vim/commit/9fe5a1d552d8b6b4239d16938bb5c7783efa9e09 Author: Doug Kearns <[email protected]> Date: Fri Feb 13 15:42:42 2026 +0000 runtime(doc): Use ellipses for overlength example comments at :help vim9.txt Use ellipses, matching the file's general style, rather than hard truncation of overlength tail comments in examples. closes: #19298 Signed-off-by: Doug Kearns <[email protected]> Signed-off-by: Christian Brabandt <[email protected]> diff --git a/runtime/doc/vim9.txt b/runtime/doc/vim9.txt index 3fe05aaf1..4a3dcf24c 100644 --- a/runtime/doc/vim9.txt +++ b/runtime/doc/vim9.txt @@ -1,4 +1,4 @@ -*vim9.txt* For Vim version 9.1. Last change: 2026 Jan 25 + *vim9.txt* For Vim version 9.1. Last change: 2026 Feb 13 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2524,31 +2524,31 @@ Types are checked for most builtin functions to make it easier to spot mistakes. The following one-line |:vim9| commands, calling builtin functions, demonstrate many of those type-checking errors: >vim9 - vim9 9->list2blob() # E1211: List required for argument 1 - vim9 9->ch_close() # E1217: Channel or Job required for - vim9 9->job_info() # E1218: Job required for argument 1 - vim9 [9]->cos() # E1219: Float or Number required for - vim9 {}->remove([]) # E1220: String or Number required - vim9 null_channel->ch_evalraw(9) # E1221: String or Blob required for - vim9 9->col() # E1222: String or List required for - vim9 9->complete_add() # E1223: String or Dictionary require - vim9 setbufline(9, 9, {}) # E1224: String, Number or List - vim9 9->count(9) # E1225: String, List, Tuple or Dict - vim9 9->add(9) # E1226: List or Blob required for - vim9 9->remove(9) # E1228: List, Dictionary, or Blob - vim9 getcharstr('9') # E1235: Bool or number required for - vim9 9->blob2list() # E1238: Blob required for argument 1 - vim9 9->filter(9) # E1251: List, Tuple, Dictionary, Blo - vim9 9->reverse() # E1253: String, List, Tuple or Blob - vim9 9->call(9) # E1256: String or Function required - vim9 null_dict->winrestview() # E1297: Non-NULL Dictionary required - vim9 {}->prop_add_list(null_list) # E1298: Non-NULL List required for - vim9 {}->repeat(9) # E1301: String, Number, List, Tuple - vim9 9->index(9) # E1528: List or Tuple or Blob - vim9 9->join() # E1529: List or Tuple required for - vim9 9->max() # E1530: List or Tuple or Dictionary - vim9 9->get(9) # E1531: Argument of get() must be a - vim9 9->tuple2list() # E1534: Tuple required for argument + vim9 9->list2blob() # E1211: List required for argume... + vim9 9->ch_close() # E1217: Channel or Job required ... + vim9 9->job_info() # E1218: Job required for argumen... + vim9 [9]->cos() # E1219: Float or Number required... + vim9 {}->remove([]) # E1220: String or Number require... + vim9 null_channel->ch_evalraw(9) # E1221: String or Blob required ... + vim9 9->col() # E1222: String or List required ... + vim9 9->complete_add() # E1223: String or Dictionary req... + vim9 setbufline(9, 9, {}) # E1224: String, Number or List r... + vim9 9->count(9) # E1225: String, List, Tuple or D... + vim9 9->add(9) # E1226: List or Blob required fo... + vim9 9->remove(9) # E1228: List, Dictionary, or Blo... + vim9 getcharstr('9') # E1235: Bool or number required ... + vim9 9->blob2list() # E1238: Blob required for argume... + vim9 9->filter(9) # E1251: List, Tuple, Dictionary,... + vim9 9->reverse() # E1253: String, List, Tuple or B... + vim9 9->call(9) # E1256: String or Function requi... + vim9 null_dict->winrestview() # E1297: Non-NULL Dictionary requ... + vim9 {}->prop_add_list(null_list) # E1298: Non-NULL List required f... + vim9 {}->repeat(9) # E1301: String, Number, List, Tu... + vim9 9->index(9) # E1528: List or Tuple or Blob re... + vim9 9->join() # E1529: List or Tuple required f... + vim9 9->max() # E1530: List or Tuple or Diction... + vim9 9->get(9) # E1531: Argument of get() must b... + vim9 9->tuple2list() # E1534: Tuple required for argum... < Reserved for future use: *E1227* *E1250* *E1252* E1227: List or Dictionary required for argument %d -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/vim_dev/E1vqvLr-00AFXN-7x%40256bit.org.
