Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/usr_41.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*usr_41.txt* For Vim バージョン 9.1. Last change: 2025 Aug 18
*usr_41.txt* For Vim バージョン 9.1. Last change: 2025 Aug 23

VIM USER MANUAL - by Bram Moolenaar

Expand Down Expand Up @@ -779,6 +779,8 @@ substitute() の呼び出しの前後にいろいろな処理を入れたりす
blob2str() blob を文字列のリストに変換する
items() 文字列のインデックスと文字のペアのリストを取得
する
uri_encode() 文字列を URI エンコードする
uri_decode() 文字列を URI デコードする

リスト操作: *list-functions*
get() 要素を取得。存在しないインデックスでもエラーを
Expand Down Expand Up @@ -898,6 +900,7 @@ Blob 操作: *blob-functions*
reverse() blob 内の数値の順序を逆にする
index() Blob 中の要素のインデックス
indexof() 式が真となる Blob 内のインデックス
items() Blob のインデックスと値のペアのリストを取得する

その他の計算: *bitwise-function*
and() ビットごとの論理積
Expand Down
5 changes: 4 additions & 1 deletion en/usr_41.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*usr_41.txt* For Vim version 9.1. Last change: 2025 Aug 18
*usr_41.txt* For Vim version 9.1. Last change: 2025 Aug 23

VIM USER MANUAL - by Bram Moolenaar

Expand Down Expand Up @@ -807,6 +807,8 @@ String manipulation: *string-functions*
str2blob() convert a list of strings into a blob
blob2str() convert a blob into a list of strings
items() get List of String index-character pairs
uri_encode() URI-encode a string
uri_decode() URI-decode a string

List manipulation: *list-functions*
get() get an item without error for wrong index
Expand Down Expand Up @@ -920,6 +922,7 @@ Blob manipulation: *blob-functions*
reverse() reverse the order of numbers in a blob
index() index of a value in a Blob
indexof() index in a Blob where an expression is true
items() get List of Blob index-value pairs

Other computation: *bitwise-function*
and() bitwise AND
Expand Down