Skip to content

Commit 0c4a4e0

Browse files
committed
fixup! usr_{41,45,46,90,toc}.jax:Update vim 8.2.1114 version help translate
1 parent 3984cdb commit 0c4a4e0

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

doc/usr_46.jax

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,21 @@
55
Vim9 script でプラグインを作る
66

77

8-
The Vim9 script language is used for writing plugins, especially larger ones
9-
that use multiple files. This chapter explains how to split up a plugin into
10-
modules, import and export items and keep the rest local.
8+
Vim9 script 言語はプラグイン、とりわけ複数ファイルから使われる巨大なものを書く
9+
のに使えます。この章ではプラグインをモジュールとして分割し、アイテムのインポー
10+
トとエクスポートおよび局所性を維持する方法を解説します。
1111

12-
|46.1| Introduction
13-
|46.2| Variable declarations
14-
|46.3| Functions and types
15-
|46.?| Using a Vim9 script from legacy script
12+
|46.1| 導入
13+
|46.2| 変数の宣言
14+
|46.3| 関数と型
15+
|46.?| 旧来のスクリプトから Vim9 script を使う
1616

1717
次章: |usr_90.txt| Vim のインストール
1818
前章: |usr_45.txt| 言語を選択する (ロケール)
1919
目次: |usr_toc.txt|
2020

2121
==============================================================================
22-
*46.1* Introduction *vim9-script-intro*
22+
*46.1* 導入 *vim9-script-intro*
2323

2424
Vim9 script was designed to make it easier to write large Vim scripts. It
2525
looks more like other script languages, especially Typescript. Also,
@@ -69,7 +69,7 @@ Notice that the assignment `result = GetPart(count)` does not use the `let`
6969
command. That is explained in the next section.
7070

7171
==============================================================================
72-
*46.2* Variable declarations *vim9-declarations*
72+
*46.2* 変数の宣言 *vim9-declarations*
7373

7474
In Vim9 script variables are declared once with a `:let` or `:const` command.
7575
Assigning a value is done without `:let` and it is not possible to `:unlet`
@@ -108,7 +108,7 @@ Although it's shorter to do: >
108108
let word = condition ? 'yes' : 'no'
109109
110110
==============================================================================
111-
*46.3* Functions and types
111+
*46.3* 関数と型 *vim9-functions* *vim9-types*
112112

113113
Legacy Vim script does have type checking, but this happens at runtime, when
114114
the code is executed. And it's permissive, often a computation gives an
@@ -161,7 +161,7 @@ multiple types, you can use the "any" type: >
161161
enddef
162162
163163
==============================================================================
164-
*46.?* Using a Vim9 script from legacy script *source-vim9-script*
164+
*46.?* 旧来のスクリプトから Vim9 script を使う *source-vim9-script*
165165

166166
In some cases you have a legacy Vim script where you want to use items from a
167167
Vim9 script. For example in your .vimrc you want to initialize a plugin. The

doc/usr_toc.jax

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,10 @@ Vim の動作を好きなように変更できます。
342342
|45.5| 言語のテキストを入力する
343343

344344
|usr_46.txt| Vim9 script でプラグインを作る
345-
|46.1| Introduction
346-
|46.2| Variable declarations
347-
|46.3| Functions and types
348-
|46.?| Using a Vim9 script from legacy script
345+
|46.1| 導入
346+
|46.2| 変数の宣言
347+
|46.3| 関数と型
348+
|46.?| 旧来のスクリプトから Vim9 script を使う
349349

350350
==============================================================================
351351
インストール ~

0 commit comments

Comments
 (0)