Skip to content

Commit 38b9d11

Browse files
authored
Merge pull request #1518 from vim-jp/hh-update-builtin
Update builtin.{txt,jax}
2 parents eadd608 + ac7beb8 commit 38b9d11

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

doc/builtin.jax

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Apr 07
1+
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 May 05
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -2552,7 +2552,7 @@ expand({string} [, {nosuf} [, {list}]]) *expand()*
25522552
は、結果の文字列には含まれない。下記を参照のこと。
25532553

25542554
|:terminal| のウィンドウに対しては、'%' は '!' とそれに続く実
2555-
行中のコマンドまたはシェルに展開される。|terminal-bufname|
2555+
行中のコマンドまたはシェルに展開される。 |terminal-bufname|
25562556

25572557
{string} が '%' か '#' か '<' で始まる場合には、展開は
25582558
|cmdline-special|のように、変換子を受け付け、それらに関連付け
@@ -4346,7 +4346,7 @@ getscriptinfo([{opts}]) *getscriptinfo()*
43464346

43474347
例: >
43484348
:echo getscriptinfo({'name': 'myscript'})
4349-
:echo getscriptinfo({'sid': 15}).variables
4349+
:echo getscriptinfo({'sid': 15})[0].variables
43504350
<
43514351
gettabinfo([{tabnr}]) *gettabinfo()*
43524352
{tabnr}を指定しないと、すべてのタブページに関する情報がリスト
@@ -9738,6 +9738,10 @@ synconcealed({lnum}, {col}) *synconcealed()*
97389738
synconcealed(lnum, 5) [1, 'X', 2]
97399739
synconcealed(lnum, 6) [0, '', 0]
97409740

9741+
Note: 構文とマッチのハイライトは、2 つの異なるメカニズム
9742+
|syntax-vs-match| であるため、項目をハイライトする |matchadd()|
9743+
は考慮されない。
9744+
97419745

97429746
synstack({lnum}, {col}) *synstack()*
97439747
カレントウィンドウの {lnum}, {col} の位置の構文アイテムのスタッ

en/builtin.txt

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.1. Last change: 2024 Apr 07
1+
*builtin.txt* For Vim version 9.1. Last change: 2024 May 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2544,7 +2544,7 @@ expand({string} [, {nosuf} [, {list}]]) *expand()*
25442544
not start with '%', '#' or '<', see below.
25452545

25462546
For a |:terminal| window '%' expands to a '!' followed by
2547-
the command or shell that is run |terminal-bufname|
2547+
the command or shell that is run. |terminal-bufname|
25482548

25492549
When {string} starts with '%', '#' or '<', the expansion is
25502550
done like for the |cmdline-special| variables with their
@@ -4382,7 +4382,7 @@ getscriptinfo([{opts}]) *getscriptinfo()*
43824382

43834383
Examples: >
43844384
:echo getscriptinfo({'name': 'myscript'})
4385-
:echo getscriptinfo({'sid': 15}).variables
4385+
:echo getscriptinfo({'sid': 15})[0].variables
43864386
<
43874387
gettabinfo([{tabnr}]) *gettabinfo()*
43884388
If {tabnr} is not specified, then information about all the
@@ -9980,6 +9980,10 @@ synconcealed({lnum}, {col}) *synconcealed()*
99809980
synconcealed(lnum, 5) [1, 'X', 2]
99819981
synconcealed(lnum, 6) [0, '', 0]
99829982

9983+
Note: Doesn't consider |matchadd()| highlighting items,
9984+
since syntax and matching highlighting are two different
9985+
mechanisms |syntax-vs-match|.
9986+
99839987

99849988
synstack({lnum}, {col}) *synstack()*
99859989
Return a |List|, which is the stack of syntax items at the

0 commit comments

Comments
 (0)