Skip to content

Commit 5c75138

Browse files
authored
Merge pull request #769 from higashi000/update-vi_diff
Update vi_diff.{jax,txt}
2 parents 850b2e7 + 10f3778 commit 5c75138

File tree

2 files changed

+21
-30
lines changed

2 files changed

+21
-30
lines changed

doc/vi_diff.jax

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vi_diff.txt* For Vim バージョン 8.1. Last change: 2019 Nov 12
1+
*vi_diff.txt* For Vim バージョン 8.2. Last change: 2019 Dec 17
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -43,7 +43,7 @@ Vimにオープンモードはありません。まったく便利ではない
4343

4444
これらのオプションは Vi にはあって、Vim にはないものです。これらのオプションを
4545
セットしてもエラーメッセージは出ませんが、設定した値は使われませんし表示もされ
46-
ません。
46+
ません。
4747

4848
autoprint (ap) 二者択一 (初期値 オン) *'autoprint'* *'ap'*
4949
beautify (bf) 二者択一 (初期値 オフ) *'beautify'* *'bf'*
@@ -73,9 +73,7 @@ Vim で編集できるファイルの制限はかなり少ないです。 {Vi: <
7373
があります。}
7474

7575
*E340*
76-
行の最大の長さ 16ビット int を使っているマシン(Amiga と MS-DOS の
77-
リアルモード)は 32767 文字、それ以外は 2147483647
78-
文字。それより長い行は分割されます。
76+
行の最大の長さ 2147483647 文字。それより長い行は分割されます。
7977
最大行数 2147483647 行
8078
最大のファイルのサイズ long integer が32ビットである場合2147483647バイト(2
8179
ギガバイト)です。64ビットの長さであればもっと多くな
@@ -105,8 +103,8 @@ Vim で編集できるファイルの制限はかなり少ないです。 {Vi: <
105103

106104
'maxmem' ('mm') オプションは一つのバッファに使われるメモリの最大の量 (キロバイ
107105
トで) を決めるのに使います。'maxmemtot' はすべてのバッファで使われるメモリの最
108-
大の量(キロバイトで)を決めるのに使います。Amiga と MS-DOS では 'maxmemtot'
109-
使えるメモリの量に依存して設定されます
106+
大の量(キロバイトで)を決めるのに使います。Amiga では 'maxmemtot' は使えるメモ
107+
リの量に依存して設定されます
110108
これらは厳格な制限ではなく、いつテキストをスワップファイルに移動するかの目安で
111109
す。もし Vim がファイルにスワップを行うのが嫌であれば 'maxmem''maxmemtot'
112110
の値をかなり大きい値に設定しておきます。そうするとスワップファイルはリカバリー
@@ -140,15 +138,14 @@ Vi との互換性 |'compatible'|
140138
- プロテクトモードの Windows 3.1 と MS-DOS (DPMI ドライバが必要です)
141139
- Windows 95 と Windows NT、ロングファイル名をサポート
142140
- OS/2 (emx.dll が必要です)
143-
- Atari MiNT
144141
- VMS
145142
- BeOS
146143
- Macintosh
147144
- Risc OS
148145
- IBM OS/390
149146
Note: いくつかのシステムではリソース使用量を削減するために機能を無効に
150-
する必要があります(特にMS-DOS)。いくつかの時代後れのシステムでは以前の
151-
バージョンのVimを使わねばなりません
147+
する必要があります。いくつかの時代後れのシステムでは以前のバージョンの
148+
Vimを使わねばなりません
152149

153150
多段永続化アンドゥ |undo|
154151
'u' は時をさかのぼり、'CTRL-R' は再び進めます。変更を覚えておく回数を
@@ -466,9 +463,9 @@ Viminfo |viminfo-file|
466463

467464
マウスサポート |mouse-using|
468465
マウスは GUI バージョンと Unix、sysmouse がある BSD、gpm がある Linux、
469-
MS-DOS、Win32 上の xterm でサポートされています。カーソルの場所を変え
470-
たりビジュアル領域を選択したりレジスタの内容を貼り付けたりするのに使う
471-
ことができます
466+
Win32 上の xterm でサポートされています。カーソルの場所を変えたりビジュ
467+
アル領域を選択したりレジスタの内容を貼り付けたりするのに使うことができ
468+
ます
472469

473470
キーの名前の使い方 |<>| |key-notation|
474471
特殊なキーはすべて <Up><End> などなどのような書き方ができるようにな
@@ -797,9 +794,8 @@ Vim が DIGRAPHS を定義してコンパイルされていればダイグラフ
797794
で起動します。<Esc> キーを押すと元に戻ります。
798795

799796
アンドゥの情報はメモリに保持されます。使用可能なメモリの量でアンドゥの回数とア
800-
ンドゥ可能なサイズが制限されます。このことは MS-DOS では問題になるかもしれませ
801-
ん。Amiga ではほとんど問題にならないですし、Unix と Win32 では大体において決し
802-
て問題になることはないです。
797+
ンドゥ可能なサイズが制限されます。このことは Amiga ではほとんど問題にならない
798+
ですし、Unix と Win32 では大体において決して問題になることはないです。
803799

804800
'backup''writebackup' オプションがセットされていると: ファイルを上書きする
805801
前にバックアップファイル(.bak)が作られます。"backup" オプションがセットされて

en/vi_diff.txt

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*vi_diff.txt* For Vim version 8.1. Last change: 2019 Nov 12
1+
*vi_diff.txt* For Vim version 8.2. Last change: 2019 Dec 17
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -74,9 +74,7 @@ Vim has only a few limits for the files that can be edited {Vi: can not handle
7474
<Nul> characters and characters above 128, has limited line length, many other
7575
limits}.
7676
*E340*
77-
Maximum line length On machines with 16-bit ints (Amiga and MS-DOS real
78-
mode): 32767, otherwise 2147483647 characters.
79-
Longer lines are split.
77+
Maximum line length 2147483647 characters. Longer lines are split.
8078
Maximum number of lines 2147483647 lines.
8179
Maximum file size 2147483647 bytes (2 Gbyte) when a long integer is
8280
32 bits. Much more for 64 bit longs. Also limited
@@ -106,8 +104,7 @@ Memory usage limits
106104
The option 'maxmem' ('mm') is used to set the maximum memory used for one
107105
buffer (in kilobytes). 'maxmemtot' is used to set the maximum memory used for
108106
all buffers (in kilobytes). The defaults depend on the system used. For the
109-
Amiga and MS-DOS, 'maxmemtot' is set depending on the amount of memory
110-
available.
107+
Amiga, 'maxmemtot' is set depending on the amount of memory available.
111108
These are not hard limits, but tell Vim when to move text into a swap file.
112109
If you don't like Vim to swap to a file, set 'maxmem' and 'maxmemtot' to a
113110
very large value. The swap file will then only be used for recovery. If you
@@ -140,15 +137,14 @@ Support for different systems.
140137
- In protected mode on Windows 3.1 and MS-DOS (DPMI driver required).
141138
- Windows 95 and Windows NT, with support for long file names.
142139
- OS/2 (needs emx.dll)
143-
- Atari MiNT
144140
- VMS
145141
- BeOS
146142
- Macintosh
147143
- Risc OS
148144
- IBM OS/390
149145
Note that on some systems features need to be disabled to reduce
150-
resource usage, esp. on MS-DOS. For some outdated systems you need to
151-
use an older Vim version.
146+
resource usage. For some outdated systems you need to use an older
147+
Vim version.
152148

153149
Multi level persistent undo. |undo|
154150
'u' goes backward in time, 'CTRL-R' goes forward again. Set option
@@ -460,9 +456,8 @@ Printing. |printing|
460456

461457
Mouse support. |mouse-using|
462458
The mouse is supported in the GUI version, in an xterm for Unix, for
463-
BSDs with sysmouse, for Linux with gpm, for MS-DOS, and Win32. It
464-
can be used to position the cursor, select the visual area, paste a
465-
register, etc.
459+
BSDs with sysmouse, for Linux with gpm, and Win32. It can be used to
460+
position the cursor, select the visual area, paste a register, etc.
466461

467462
Usage of key names. |<>| |key-notation|
468463
Special keys now all have a name like <Up>, <End>, etc.
@@ -782,8 +777,8 @@ If the 'insertmode' option is set (e.g. in .exrc), Vim starts in insert mode.
782777
And it comes back there, when pressing <Esc>.
783778

784779
Undo information is kept in memory. Available memory limits the number and
785-
size of change that can be undone. This may be a problem with MS-DOS, is
786-
hardly a problem on the Amiga and almost never with Unix and Win32.
780+
size of change that can be undone. This is hardly a problem on the Amiga and
781+
almost never with Unix and Win32.
787782

788783
If the 'backup' or 'writebackup' option is set: Before a file is overwritten,
789784
a backup file (.bak) is made. If the "backup" option is set it is left

0 commit comments

Comments
 (0)