Skip to content

Commit 4480911

Browse files
committed
Update some files
1 parent e10af94 commit 4480911

File tree

6 files changed

+39
-16
lines changed

6 files changed

+39
-16
lines changed

doc/quickref.jax

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickref.txt* For Vim バージョン 7.4. Last change: 2013 Jun 29
1+
*quickref.txt* For Vim バージョン 7.4. Last change: 2014 Jun 25
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -639,6 +639,8 @@
639639
'bioskey' 'biosk' MS-DOS専用: 文字入力にbiosコールを使う
640640
'bomb' ファイルの先頭にBOMを付加する
641641
'breakat' 'brk' 'linebreak' がオンのとき、改行を引き起こす文字
642+
'breakindent' 'bri' 折り返された行でインデントを繰り返す
643+
'breakindentopt' 'briopt' 'breakindent' のための設定
642644
'browsedir' 'bsdir' ブラウズを始めるディレクトリ
643645
'bufhidden' 'bh' ウィンドウに繋がったバッファがなくなった時の動作
644646
'buflisted' 'bl' バッファリストにバッファを表示するかどうか

doc/recover.jax

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*recover.txt* For Vim バージョン 7.4. Last change: 2010 Jul 20
1+
*recover.txt* For Vim バージョン 7.4. Last change: 2014 Mar 27
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -81,7 +81,17 @@ Amigaでは、回復可能なramディスクを使えるが、それが100%働
8181
ことはない。読取専用属性のファイルについて何らかの変更が加えられたとき、スワッ
8282
プファイルは無条件に作成される。
8383

84-
スワップファイルの作成を避けるために 'swapfile' オプションをリセットできる。
84+
スワップファイルの作成を避けるために 'swapfile' オプションをリセットできる。そ
85+
して新しいバッファでスワップファイルを作成しないようにするのに |:noswapfile| 
86+
修飾子を使うことができる。
87+
88+
:nos[wapfile] {command} *:nos* *:noswapfile*
89+
{command} を実行する。それが新しいバッファを読み込むコマンドを
90+
含んでいる場合は、スワップファイルは作成されずに読み込まれ、
91+
'swapfile' オプションはリセットされる。バッファが既にスワップ
92+
ファイルを持っていた場合は、スワップファイルは削除されず、
93+
'swapfile' はリセットされない。
94+
8595

8696
既存のスワップファイルを削除する ~
8797

doc/spell.jax

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*spell.txt* For Vim バージョン 7.4. Last change: 2013 Nov 12
1+
*spell.txt* For Vim バージョン 7.4. Last change: 2014 Jul 02
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -303,8 +303,8 @@ LL.EEE.add.spl という名前のファイルが追加でロードされる。
303303
生する。これによってスペルファイルをダウンロードする |spellfile.vim| プラグイ
304304
ンを呼び出せる。
305305

306-
Additionally, the files related to the names in 'spellfile' are loaded. These
307-
are the files that |zg| and |zw| add good and wrong words to.
306+
加えて、'spellfile' の名前に関連したファイルは読み込まれる。これらは |zg|
307+
|zw| で正しい単語や間違った単語を追加したファイルである。
308308

309309
例外:
310310
- Vim uses "latin1" when 'encoding' is "iso-8859-15". The euro sign doesn't
@@ -942,9 +942,10 @@ be combined without errors.
942942

943943
If you get an E763 warning that the word tables differ you need to update your
944944
".spl" spell files. If you downloaded the files, get the latest version of
945-
all spell files you use. Otherwise generate the .spl file again with
946-
|:mkspell|. If you still get errors check the FOL, LOW and UPP lines in the
947-
used .aff files.
945+
all spell files you use. If you are only using one, e.g., German, then also
946+
download the recent English spell files. Otherwise generate the .spl file
947+
again with |:mkspell|. If you still get errors check the FOL, LOW and UPP
948+
lines in the used .aff files.
948949

949950
The XX.ascii.spl spell file generated with the "-ascii" argument will not
950951
contain the table with characters, so that it can be combine with spell files

en/quickref.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickref.txt* For Vim version 7.4. Last change: 2013 Jun 29
1+
*quickref.txt* For Vim version 7.4. Last change: 2014 Jun 25
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -624,6 +624,8 @@ Short explanation of each option: *option-list*
624624
'bioskey' 'biosk' MS-DOS: use bios calls for input characters
625625
'bomb' prepend a Byte Order Mark to the file
626626
'breakat' 'brk' characters that may cause a line break
627+
'breakindent' 'bri' wrapped line repeats indent
628+
'breakindentopt' 'briopt' settings for 'breakindent'
627629
'browsedir' 'bsdir' which directory to start browsing in
628630
'bufhidden' 'bh' what to do when buffer is no longer in window
629631
'buflisted' 'bl' whether the buffer shows up in the buffer list

en/recover.txt

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*recover.txt* For Vim version 7.4. Last change: 2010 Jul 20
1+
*recover.txt* For Vim version 7.4. Last change: 2014 Mar 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -81,7 +81,14 @@ the amount of memory used to be higher than given with 'maxmem' or
8181
'maxmemtot'. And when making a change to a read-only file, the swap file is
8282
created anyway.
8383

84-
The 'swapfile' option can be reset to avoid creating a swapfile.
84+
The 'swapfile' option can be reset to avoid creating a swapfile. And the
85+
|:noswapfile| modifier can be used to not create a swapfile for a new buffer.
86+
87+
:nos[wapfile] {command} *:nos* *:noswapfile*
88+
Execute {command}. If it contains a command that loads a new
89+
buffer, it will be loaded without creating a swapfile and the
90+
'swapfile' option will be reset. If a buffer already had a
91+
swapfile it is not removed and 'swapfile' is not reset.
8592

8693

8794
Detecting an existing swap file ~

en/spell.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*spell.txt* For Vim version 7.4. Last change: 2013 Nov 12
1+
*spell.txt* For Vim version 7.4. Last change: 2014 Jul 02
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -939,9 +939,10 @@ be combined without errors.
939939

940940
If you get an E763 warning that the word tables differ you need to update your
941941
".spl" spell files. If you downloaded the files, get the latest version of
942-
all spell files you use. Otherwise generate the .spl file again with
943-
|:mkspell|. If you still get errors check the FOL, LOW and UPP lines in the
944-
used .aff files.
942+
all spell files you use. If you are only using one, e.g., German, then also
943+
download the recent English spell files. Otherwise generate the .spl file
944+
again with |:mkspell|. If you still get errors check the FOL, LOW and UPP
945+
lines in the used .aff files.
945946

946947
The XX.ascii.spl spell file generated with the "-ascii" argument will not
947948
contain the table with characters, so that it can be combine with spell files

0 commit comments

Comments
 (0)