diff --git a/doc/builtin.jax b/doc/builtin.jax index b862c9d0e..cc851153e 100644 --- a/doc/builtin.jax +++ b/doc/builtin.jax @@ -1,4 +1,4 @@ -*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Oct 16 +*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Nov 01 VIMリファレンスマニュアル by Bram Moolenaar @@ -1676,7 +1676,7 @@ charclass({string}) *charclass()* 文字クラスは次のいずれか: 0 空白 1 区切り文字 - 2 単語文字 + 2 単語文字 ('iskeyword' に依存) 3 絵文字 その他 Unicode 固有のクラス クラスはパターンと単語単位の移動で使われる。 @@ -4802,7 +4802,7 @@ getregion({pos1}, {pos2} [, {opts}]) *getregion()* < 戻り値の型: list -< + getregionpos({pos1}, {pos2} [, {opts}]) *getregionpos()* |getregion()| と同じだが、{pos1} と {pos2} によって囲まれたバッ ファのテキストセグメントを表す位置のリストを返す。 @@ -4855,6 +4855,7 @@ getregtype([{regname}]) *getregtype()* < 戻り値の型: |String| + getscriptinfo([{opts}]) *getscriptinfo()* `:scriptnames` が見せるように、読み込まれたすべての Vim script に関する情報を読み込まれた順序で |List| として返す。 diff --git a/en/builtin.txt b/en/builtin.txt index 5d9a43668..edc425a5a 100644 --- a/en/builtin.txt +++ b/en/builtin.txt @@ -1,4 +1,4 @@ -*builtin.txt* For Vim version 9.1. Last change: 2024 Oct 16 +*builtin.txt* For Vim version 9.1. Last change: 2024 Nov 01 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1625,7 +1625,7 @@ charclass({string}) *charclass()* The character class is one of: 0 blank 1 punctuation - 2 word character + 2 word character (depends on 'iskeyword') 3 emoji other specific Unicode class The class is used in patterns and word motions. @@ -4836,7 +4836,7 @@ getregion({pos1}, {pos2} [, {opts}]) *getregion()* < Return type: list -< + getregionpos({pos1}, {pos2} [, {opts}]) *getregionpos()* Same as |getregion()|, but returns a list of positions describing the buffer text segments bound by {pos1} and @@ -4893,6 +4893,7 @@ getregtype([{regname}]) *getregtype()* < Return type: |String| + getscriptinfo([{opts}]) *getscriptinfo()* Returns a |List| with information about all the sourced Vim scripts in the order they were sourced, like what