diff --git a/doc/usr_41.jax b/doc/usr_41.jax index 6f747db3c..52742b283 100644 --- a/doc/usr_41.jax +++ b/doc/usr_41.jax @@ -1,4 +1,4 @@ -*usr_41.txt* For Vim バージョン 9.0. Last change: 2022 Oct 07 +*usr_41.txt* For Vim バージョン 9.0. Last change: 2022 Nov 22 VIM USER MANUAL - by Bram Moolenaar @@ -427,7 +427,7 @@ Vim は式の取り扱いはかなり標準的です。式の定義について ることができます: > echo $"Name: {name}" -詳細は |interp-string| を参照してください。 +詳細は |interpolated-string| を参照してください。 C 言語と同じ条件演算子も使えます: > @@ -911,6 +911,7 @@ Blob 操作: *blob-functions* 他のバッファのテキストで動作するもの: getbufline() 指定したバッファから行のリストを得る + getbufoneline() 指定したバッファから1行を得る setbufline() 指定したバッファ内の行を置き換える appendbufline() 指定したバッファに行のリストを追加する deletebufline() 指定したバッファから行を削除する @@ -1085,6 +1086,7 @@ Quickfixとlocationリスト: *quickfix-functions* getcharstr() ユーザーが入力した文字を文字列として得る getcharmod() 最後に入力した文字の修飾子(modifier)を得る getmousepos() 最後に取得したマウスの位置を得る + getmouseshape() 現在のマウスカーソル形状名を得る echoraw() 文字をそのまま出力する feedkeys() 先行入力キューに文字を入れる input() ユーザーが入力した行を得る diff --git a/en/usr_41.txt b/en/usr_41.txt index e449003a5..43a13d986 100644 --- a/en/usr_41.txt +++ b/en/usr_41.txt @@ -1,4 +1,4 @@ -*usr_41.txt* For Vim version 9.0. Last change: 2022 Oct 07 +*usr_41.txt* For Vim version 9.0. Last change: 2022 Nov 22 VIM USER MANUAL - by Bram Moolenaar @@ -442,7 +442,7 @@ If you don't like the concatenation you can use the $"string" form, which accepts an expression in curly braces: > echo $"Name: {name}" -See |interp-string| for more information. +See |interpolated-string| for more information. Borrowed from the C language is the conditional expression: > @@ -803,7 +803,7 @@ List manipulation: *list-functions* call() call a function with List as arguments index() index of a value in a List or Blob indexof() index in a List or Blob where an expression - evaluates to true + evaluates to true max() maximum value in a List min() minimum value in a List count() count number of times a value appears in a List @@ -935,6 +935,7 @@ Working with text in the current buffer: *text-functions* Working with text in another buffer: getbufline() get a list of lines from the specified buffer + getbufoneline() get a one line from the specified buffer setbufline() replace a line in the specified buffer appendbufline() append a list of lines in the specified buffer deletebufline() delete lines from a specified buffer @@ -1110,6 +1111,7 @@ Interactive: *interactive-functions* getcharstr() get a character from the user as a string getcharmod() get modifiers for the last typed character getmousepos() get last known mouse position + getmouseshape() get name of the current mouse shape echoraw() output characters as-is feedkeys() put characters in the typeahead queue input() get a line from the user