From 654f56b2a24c667cc55c51b6d0de16bac865013f Mon Sep 17 00:00:00 2001 From: h-east Date: Sun, 24 Aug 2025 23:19:54 +0900 Subject: [PATCH] Update usr_41.{txt,jax} --- doc/usr_41.jax | 5 ++++- en/usr_41.txt | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/doc/usr_41.jax b/doc/usr_41.jax index 348ab830e..28f7f6c41 100644 --- a/doc/usr_41.jax +++ b/doc/usr_41.jax @@ -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 @@ -779,6 +779,8 @@ substitute() の呼び出しの前後にいろいろな処理を入れたりす blob2str() blob を文字列のリストに変換する items() 文字列のインデックスと文字のペアのリストを取得 する + uri_encode() 文字列を URI エンコードする + uri_decode() 文字列を URI デコードする リスト操作: *list-functions* get() 要素を取得。存在しないインデックスでもエラーを @@ -898,6 +900,7 @@ Blob 操作: *blob-functions* reverse() blob 内の数値の順序を逆にする index() Blob 中の要素のインデックス indexof() 式が真となる Blob 内のインデックス + items() Blob のインデックスと値のペアのリストを取得する その他の計算: *bitwise-function* and() ビットごとの論理積 diff --git a/en/usr_41.txt b/en/usr_41.txt index 0b5245e89..813211e7c 100644 --- a/en/usr_41.txt +++ b/en/usr_41.txt @@ -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 @@ -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 @@ -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