Skip to content

Commit b5aab43

Browse files
authored
Merge pull request #1421 from vim-jp/hh-update-usr_41
Update usr_41.{txt,jax}
2 parents 402f851 + c7ddad5 commit b5aab43

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

doc/usr_41.jax

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim バージョン 9.1. Last change: 2023 May 06
1+
*usr_41.txt* For Vim バージョン 9.1. Last change: 2024 Jan 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -715,10 +715,13 @@ substitute() の呼び出しの前後にいろいろな処理を入れたりす
715715
toupper() 文字列を大文字にする
716716
charclass() 文字のクラス
717717
match() 文字列の中でパターンにマッチした位置
718+
matchbufline() バッファ内のパターンのすべてのマッチ
718719
matchend() 文字列の中でパターンにマッチした末尾の位置
719720
matchfuzzy() リスト内の文字列についてファジーマッチした文字列
720721
matchfuzzypos() リスト内の文字列についてファジーマッチした文字列
721722
matchstr() 文字列の中でパターンにマッチした文字列
723+
matchstrlist() 文字列のリスト内のパターンにマッチするすべての
724+
文字列
722725
matchstrpos() 文字列の中でパターンにマッチした文字列と位置
723726
matchlist() matchstr()と同様だが、部分マッチも返す
724727
stridx() 文字列の中で部分文字列が見つかった最初の位置
@@ -769,6 +772,7 @@ substitute() の呼び出しの前後にいろいろな処理を入れたりす
769772
filter() リストから選択された要素を取り除く
770773
map() リストの各要素を変換する
771774
mapnew() 変換した要素で新しいリストを作成する
775+
foreach() リスト項目に関数を適用する
772776
reduce() リストの畳み込みの値を算出する
773777
slice() リストのスライスを取る
774778
sort() リストをソートする
@@ -802,6 +806,7 @@ substitute() の呼び出しの前後にいろいろな処理を入れたりす
802806
filter() 辞書から選択された要素を取り除く
803807
map() 辞書の各要素を変換する
804808
mapnew() 変換した要素で新しい辞書を作成する
809+
foreach() 辞書項目に関数を適用する
805810
keys() 辞書の全キーのリストを取得する
806811
values() 辞書の全値のリストを取得する
807812
items() 辞書の全キー・値のペアを取得する

en/usr_41.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 9.1. Last change: 2023 May 06
1+
*usr_41.txt* For Vim version 9.1. Last change: 2024 Jan 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -743,10 +743,13 @@ String manipulation: *string-functions*
743743
toupper() turn a string to uppercase
744744
charclass() class of a character
745745
match() position where a pattern matches in a string
746+
matchbufline() all the matches of a pattern in a buffer
746747
matchend() position where a pattern match ends in a string
747748
matchfuzzy() fuzzy matches a string in a list of strings
748749
matchfuzzypos() fuzzy matches a string in a list of strings
749750
matchstr() match of a pattern in a string
751+
matchstrlist() all the matches of a pattern in a List of
752+
strings
750753
matchstrpos() match and positions of a pattern in a string
751754
matchlist() like matchstr() and also return submatches
752755
stridx() first index of a short string in a long string
@@ -795,6 +798,7 @@ List manipulation: *list-functions*
795798
filter() remove selected items from a List
796799
map() change each List item
797800
mapnew() make a new List with changed items
801+
foreach() apply function to List items
798802
reduce() reduce a List to a value
799803
slice() take a slice of a List
800804
sort() sort a List
@@ -826,6 +830,7 @@ Dictionary manipulation: *dict-functions*
826830
filter() remove selected entries from a Dictionary
827831
map() change each Dictionary entry
828832
mapnew() make a new Dictionary with changed items
833+
foreach() apply function to Dictionary items
829834
keys() get List of Dictionary keys
830835
values() get List of Dictionary values
831836
items() get List of Dictionary key-value pairs

0 commit comments

Comments
 (0)