Skip to content

Commit 8d6d421

Browse files
committed
usr_{50,51,52,90,toc}.jax: Update a part
1 parent b3fd8b1 commit 8d6d421

File tree

5 files changed

+33
-28
lines changed

5 files changed

+33
-28
lines changed

doc/usr_50.jax

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
*usr_50.txt* For Vim version 8.2. Last change: 2022 May 13
1+
*usr_50.txt* For Vim バージョン 8.2. Last change: 2022 May 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

5-
Advanced Vim script writing
5+
高度な Vim script の書き方
66

77

8-
TODO - this chapter is to be written
8+
TODO - この章はのいずれ書きます
99

10-
|50.1| Writing stuff
10+
|50.1| 執筆活動
1111

12-
Next chapter: |usr_51.txt| Create a plugin
13-
Previous chapter: |usr_45.txt| Select your language (local)
14-
Table of contents: |usr_toc.txt|
12+
次章: |usr_51.txt| プラグインを作る
13+
前章: |usr_45.txt| 言語を選択する (ロケール)
14+
目次: |usr_toc.txt|
1515

1616
==============================================================================
17-
*50.1* Writing stuff
17+
*50.1* 執筆活動
1818

1919
TODO
2020

2121
==============================================================================
2222

23-
Next chapter: |usr_51.txt| Create a plugin
23+
Next chapter: |usr_51.txt| プラグインを作る
2424

2525
Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl:

doc/usr_51.jax

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
*usr_51.txt* For Vim version 8.2. Last change: 2022 May 13
1+
*usr_51.txt* For Vim バージョン 8.2. Last change: 2022 May 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

5-
Write plugins
5+
プラグインを作る
66

77

88
Plugins can be used to define settings for a specific type of file, syntax
@@ -16,9 +16,9 @@ most common Vim plugins.
1616
|51.5| Writing library scripts
1717
|51.6| Distributing Vim scripts
1818

19-
Next chapter: |usr_52.txt| Write plugins using Vim9 script
20-
Previous chapter: |usr_50.txt| Advanced Vim script writing
21-
Table of contents: |usr_toc.txt|
19+
次章: |usr_52.txt| Vim9 script でプラグインを作る
20+
前章: |usr_50.txt| 高度な Vim script の書き方
21+
目次: |usr_toc.txt|
2222

2323
==============================================================================
2424
*51.1* Writing a generic plugin *write-plugin*
@@ -855,6 +855,6 @@ It's good if you add a line to allow automatic updating. See |glvs-plugins|.
855855

856856
==============================================================================
857857

858-
Next chapter: |usr_52.txt| Write plugins using Vim9 script
858+
次章: |usr_52.txt| Vim9 script でプラグインを作る
859859

860860
Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl:

doc/usr_52.jax

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_46.txt* For Vim バージョン 8.2. Last change: 2020 Jun 14
1+
*usr_52.txt* For Vim バージョン 8.2. Last change: 2020 Jun 14
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -9,17 +9,17 @@ Vim9 script 言語はプラグイン、とりわけ複数のファイルから
99
に使えます。この章ではプラグインをモジュールとして分割し、アイテムをインポート
1010
やエクスポートして局所性を維持する方法を解説します。
1111

12-
|46.1| 導入
13-
|46.2| 変数の宣言
14-
|46.3| 関数と型
15-
|46.?| 旧来のスクリプトから Vim9 script を使う
12+
|52.1| 導入
13+
|52.2| 変数の宣言
14+
|52.3| 関数と型
15+
|52.4| 旧来のスクリプトから Vim9 script を使う
1616

1717
次章: |usr_90.txt| Vim のインストール
18-
前章: |usr_45.txt| 言語を選択する (ロケール)
18+
前章: |usr_51.txt| プラグインを作る
1919
目次: |usr_toc.txt|
2020

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

2424
Vim9 script は大きな Vim script を容易に書けるようにデザインされています。他の
2525
スクリプト言語、特に TypeScript のようになっています。また、処理内の関数はコン
@@ -69,7 +69,7 @@ Vim9 script は大きな Vim script を容易に書けるようにデザイン
6969
とです。これについては次の節で説明します。
7070

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

7474
Vim9 script の変数は一度だけ `:let` もしくは `:const` コマンドによって宣言され
7575
ます。値は `:let` 無しで代入され変数を `:unlet` することはできません。
@@ -106,7 +106,7 @@ Vim9 script の変数は一度だけ `:let` もしくは `:const` コマンド
106106
let word = condition ? 'yes' : 'no'
107107
108108
==============================================================================
109-
*46.3* 関数と型
109+
*52.3* 関数と型
110110

111111
旧来の Vim script は型のチェックがありましたが、ランタイムつまりコード実行時に
112112
実施していました。そしてそれは寛容で、ときどきエラー報告ではなく処理によって不
@@ -159,7 +159,7 @@ Vim9 script は厳密で、"+" 演算子は数値か浮動小数点数でしか
159159
enddef
160160
161161
==============================================================================
162-
*46.?* 旧来のスクリプトから Vim9 script を使う *source-vim9-script*
162+
*52.4* 旧来のスクリプトから Vim9 script を使う *source-vim9-script*
163163

164164
いくつかの場合として持っている旧来の Vim script にて Vim9 script のアイテムを
165165
使いたいことがあります。たとえばあなたの .vimrc がプラグインの初期化をする場合

doc/usr_90.jax

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_90.txt* For Vim バージョン 8.2. Last change: 2020 Jun 11
1+
*usr_90.txt* For Vim バージョン 8.2. Last change: 2022 May 13
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -15,7 +15,7 @@ Vim を使うにはまずインストールする必要があります。シス
1515
|90.4| よくある問題
1616
|90.5| アンインストール
1717

18-
前章: |usr_46.txt| Vim9 script でプラグインを作る
18+
前章: |usr_52.txt| Vim9 script でプラグインを作る
1919
目次: |usr_toc.txt|
2020

2121
==============================================================================
@@ -472,6 +472,7 @@ zip アーカイブからインストールした場合は、"uninstall" プロ
472472

473473
==============================================================================
474474

475+
前章: |usr_52.txt| Vim9 script でプラグインを作る
475476
目次: |usr_toc.txt|
476477

477478
Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl:

doc/usr_toc.jax

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@
4343
|usr_43.txt| ファイルタイプを使う
4444
|usr_44.txt| 構文ファイルを作成する
4545
|usr_45.txt| 言語を選択する (ロケール)
46-
|usr_46.txt| Vim9 script でプラグインを作る
46+
47+
Vim script を書く ~
48+
|usr_50.txt| 高度な Vim script の書き方
49+
|usr_51.txt| プラグインを作る
50+
|usr_52.txt| Vim9 script でプラグインを作る
4751

4852
インストール ~
4953
|usr_90.txt| Vimのインストール

0 commit comments

Comments
 (0)