From 9e2afe77e64bc592c6dea1714e4ce4799742a35f Mon Sep 17 00:00:00 2001 From: h-east Date: Thu, 16 Oct 2025 21:47:31 +0900 Subject: [PATCH] Update textprop.{txt,jax} --- doc/textprop.jax | 6 +++--- en/textprop.txt | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/textprop.jax b/doc/textprop.jax index be30af986..d9d3a580a 100644 --- a/doc/textprop.jax +++ b/doc/textprop.jax @@ -1,4 +1,4 @@ -*textprop.txt* For Vim バージョン 9.1. Last change: 2025 Oct 12 +*textprop.txt* For Vim バージョン 9.1. Last change: 2025 Oct 14 VIMリファレンスマニュアル by Bram Moolenaar @@ -356,7 +356,7 @@ prop_list({lnum} [, {props}]) *prop_list()* エラーの時は空のリストを返す。 - 例: + 例: > " 5行目に置かれている全テキストプロパティを取得する echo prop_list(5) " バッファ4の20行目に置かれている全テキストプロパティを取得 @@ -380,7 +380,7 @@ prop_list({lnum} [, {props}]) *prop_list()* " パティを取得する。 echo prop_list(1, {'bufnr': 4, 'types': ['myprop'], \ 'ids': [100], 'end_lnum': -1}) - +< |method| としても使用できる: > GetLnum()->prop_list() < diff --git a/en/textprop.txt b/en/textprop.txt index ff1baf88c..fbef22842 100644 --- a/en/textprop.txt +++ b/en/textprop.txt @@ -1,4 +1,4 @@ -*textprop.txt* For Vim version 9.1. Last change: 2025 Oct 12 +*textprop.txt* For Vim version 9.1. Last change: 2025 Oct 14 VIM REFERENCE MANUAL by Bram Moolenaar @@ -363,7 +363,7 @@ prop_list({lnum} [, {props}]) *prop_list()* Returns an empty list on error. - Examples: + Examples: > " get text properties placed in line 5 echo prop_list(5) " get text properties placed in line 20 in buffer 4 @@ -384,7 +384,7 @@ prop_list({lnum} [, {props}]) *prop_list()* " in buffer 4. echo prop_list(1, {'bufnr': 4, 'types': ['myprop'], \ 'ids': [100], 'end_lnum': -1}) - +< Can also be used as a |method|: > GetLnum()->prop_list() <