Skip to content

Commit 5491fbb

Browse files
authored
Merge pull request #1202 from tsuyoshicho/update/20221125/usr41
Update usr_41.{txt,jax}
2 parents 08452c6 + 2369d01 commit 5491fbb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

doc/usr_41.jax

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim バージョン 9.0. Last change: 2022 Oct 07
1+
*usr_41.txt* For Vim バージョン 9.0. Last change: 2022 Nov 22
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -427,7 +427,7 @@ Vim は式の取り扱いはかなり標準的です。式の定義について
427427
ることができます: >
428428
echo $"Name: {name}"
429429
430-
詳細は |interp-string| を参照してください。
430+
詳細は |interpolated-string| を参照してください。
431431

432432
C 言語と同じ条件演算子も使えます: >
433433
@@ -911,6 +911,7 @@ Blob 操作: *blob-functions*
911911

912912
他のバッファのテキストで動作するもの:
913913
getbufline() 指定したバッファから行のリストを得る
914+
getbufoneline() 指定したバッファから1行を得る
914915
setbufline() 指定したバッファ内の行を置き換える
915916
appendbufline() 指定したバッファに行のリストを追加する
916917
deletebufline() 指定したバッファから行を削除する
@@ -1085,6 +1086,7 @@ Quickfixとlocationリスト: *quickfix-functions*
10851086
getcharstr() ユーザーが入力した文字を文字列として得る
10861087
getcharmod() 最後に入力した文字の修飾子(modifier)を得る
10871088
getmousepos() 最後に取得したマウスの位置を得る
1089+
getmouseshape() 現在のマウスカーソル形状名を得る
10881090
echoraw() 文字をそのまま出力する
10891091
feedkeys() 先行入力キューに文字を入れる
10901092
input() ユーザーが入力した行を得る

en/usr_41.txt

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 9.0. Last change: 2022 Oct 07
1+
*usr_41.txt* For Vim version 9.0. Last change: 2022 Nov 22
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -442,7 +442,7 @@ If you don't like the concatenation you can use the $"string" form, which
442442
accepts an expression in curly braces: >
443443
echo $"Name: {name}"
444444
445-
See |interp-string| for more information.
445+
See |interpolated-string| for more information.
446446

447447
Borrowed from the C language is the conditional expression: >
448448
@@ -803,7 +803,7 @@ List manipulation: *list-functions*
803803
call() call a function with List as arguments
804804
index() index of a value in a List or Blob
805805
indexof() index in a List or Blob where an expression
806-
evaluates to true
806+
evaluates to true
807807
max() maximum value in a List
808808
min() minimum value in a List
809809
count() count number of times a value appears in a List
@@ -935,6 +935,7 @@ Working with text in the current buffer: *text-functions*
935935

936936
Working with text in another buffer:
937937
getbufline() get a list of lines from the specified buffer
938+
getbufoneline() get a one line from the specified buffer
938939
setbufline() replace a line in the specified buffer
939940
appendbufline() append a list of lines in the specified buffer
940941
deletebufline() delete lines from a specified buffer
@@ -1110,6 +1111,7 @@ Interactive: *interactive-functions*
11101111
getcharstr() get a character from the user as a string
11111112
getcharmod() get modifiers for the last typed character
11121113
getmousepos() get last known mouse position
1114+
getmouseshape() get name of the current mouse shape
11131115
echoraw() output characters as-is
11141116
feedkeys() put characters in the typeahead queue
11151117
input() get a line from the user

0 commit comments

Comments
 (0)