Skip to content

Update builtin.{txt,jax} #1518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 7, 2024
Merged
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
10 changes: 7 additions & 3 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Apr 07
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 May 05


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

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

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

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

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


synstack({lnum}, {col}) *synstack()*
カレントウィンドウの {lnum}, {col} の位置の構文アイテムのスタッ
Expand Down
10 changes: 7 additions & 3 deletions en/builtin.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim version 9.1. Last change: 2024 Apr 07
*builtin.txt* For Vim version 9.1. Last change: 2024 May 05


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

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

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

Examples: >
:echo getscriptinfo({'name': 'myscript'})
:echo getscriptinfo({'sid': 15}).variables
:echo getscriptinfo({'sid': 15})[0].variables
<
gettabinfo([{tabnr}]) *gettabinfo()*
If {tabnr} is not specified, then information about all the
Expand Down Expand Up @@ -9980,6 +9980,10 @@ synconcealed({lnum}, {col}) *synconcealed()*
synconcealed(lnum, 5) [1, 'X', 2]
synconcealed(lnum, 6) [0, '', 0]

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


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