Skip to content

Commit 77aa561

Browse files
authored
Merge pull request #2208 from h-east/update-insert
Update insert.{txt,jax}
2 parents 552b754 + 74d5e2b commit 77aa561

File tree

2 files changed

+29
-26
lines changed

2 files changed

+29
-26
lines changed

doc/insert.jax

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*insert.txt* For Vim バージョン 9.1. Last change: 2025 Jul 25
1+
*insert.txt* For Vim バージョン 9.1. Last change: 2025 Aug 06
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -38,10 +38,10 @@
3838

3939
テキストを入力する際に特別な言語のモードを使用している場合、いつもこのモードが
4040
ON/OFFと切り替えられてしまうのをどう避けるかを知るには 'langmap' オプション
41-
(|'langmap'|) を参照すること。
41+
('langmap') を参照すること。
4242

4343
'insertmode' を設定した場合には、<Esc>と他の幾つかのキーに別の意味が与えられ
44-
る。|'insertmode'| を参照。
44+
る。'insertmode' を参照。
4545

4646
文字 アクション ~
4747
-----------------------------------------------------------------------
@@ -274,15 +274,16 @@ CTRL-] 文字を入れることなく、短縮入力をトリガーする。
274274

275275
項目 アクション ~
276276
indent 字下げをバックスペースで消去可能
277-
eol 行末をバックスペースで消去可能(行を連結)
278-
start 挿入の開始点を超えてバックスペースで消去可能; CTRL-WCTRL-Uは一度
279-
スタート地点で停止する。
277+
eol 改行をバックスペースで消去可能(行を連結)
278+
start 挿入の開始位置を越えてのバックスペースを許可する。CTRL-WCTRL-U
279+
は挿入の開始位置で一度停止する。
280+
nostop start に似ているが、CTRL-WCTRL-U は挿入の開始位置で止まらない。
280281

281282
'backspace' が空の時、Vi互換のバックスペースが使用される。自動字下げや、第1カ
282283
ラムの前、そして挿入の開始点を超えてのバックスペースはできない。
283284

284285
下位互換性のために、値として "0"、"1"、"2" そして "3" を使用することもできる。
285-
|'backspace'| 参照。
286+
'backspace' 参照。
286287

287288
'backspace' オプションが "eol" を含まれている時に、カーソルが第1カラムにあり、
288289
3つのキーのうちどれかが押されると、現在の行が1行前の行に連結される。これはカー
@@ -595,9 +596,9 @@ CTRL-TとCTRL-Dを使用したときには面白い効果がある。カーソ
595596
'list' モードでないかのように振舞う。
596597

597598
Note: カーソルより後ろの文字が移動して見えることがあるが、それは List モード
598-
|'list'| がオンのとき、そしてまれに 'wrap' がオンのとき (そして変更によって行
599-
の長さがスクリーンの幅より短くなるか長くなるとき) だけである。それ以外では、
600-
ろの文字が動かないようにスペースが挿入される
599+
'list' がオンのとき、そしてまれに 'wrap' がオンのとき (そして変更によって行の
600+
長さがスクリーンの幅より短くなるか長くなるとき) だけである。それ以外では、後ろ
601+
の文字が動かないようにスペースが挿入される
601602

602603
このモードは<Tab>でカラムが区切られた表へ、新しいデータをカラムを揃えて入力す
603604
るような編集作業に便利である。
@@ -1077,13 +1078,13 @@ CTRL-X CTRL-Z テキストを変更せずに補完を停止する。
10771078
☆自動補完 *ins-autocompletion*
10781079

10791080
Vim は、|i_CTRL-N| を使うのと同様に、入力中に自動的に補完メニューを表示できる。
1080-
|'autocomplete'| を参照。メニュー項目は、|'complete'| オプションに指定された
1081-
ソースから収集される
1081+
'autocomplete' を参照。メニュー項目は、'complete' オプションに指定されたソース
1082+
から収集される
10821083

10831084
手動の |i_CTRL-N| 補完とは異なり、このモードでは Vim の応答性を維持するために
1084-
徐々に減少するタイムアウトを使用する。|'complete'| リストの上位にあるソースに
1085-
は、より多くの時間 (より高い優先度) が与えられるが、すべてのソースには、どんな
1086-
に短い時間であっても、一定のタイムスライスが保証される。
1085+
徐々に減少するタイムアウトを使用する。'complete' リストの上位にあるソースには、
1086+
より多くの時間 (より高い優先度) が与えられるが、すべてのソースには、どんなに短
1087+
い時間であっても、一定のタイムスライスが保証される。
10871088

10881089
このモードは他の補完モードと完全に互換性がある。|CTRL-X| を入力することで、い
10891090
つでも他の補完モードを呼び出すことができる。これにより、自動補完が一時的に停止

en/insert.txt

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*insert.txt* For Vim version 9.1. Last change: 2025 Jul 25
1+
*insert.txt* For Vim version 9.1. Last change: 2025 Aug 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -38,11 +38,11 @@ use "CTRL-V 003" to insert a CTRL-C. Note: When CTRL-V is mapped you can
3838
often use CTRL-Q instead |i_CTRL-Q|.
3939

4040
If you are working in a special language mode when inserting text, see the
41-
'langmap' option, |'langmap'|, on how to avoid switching this mode on and off
41+
'langmap' option, 'langmap', on how to avoid switching this mode on and off
4242
all the time.
4343

4444
If you have 'insertmode' set, <Esc> and a few other keys get another meaning.
45-
See |'insertmode'|.
45+
See 'insertmode'.
4646

4747
char action ~
4848
-----------------------------------------------------------------------
@@ -284,15 +284,17 @@ The effect of the <BS>, CTRL-W, and CTRL-U depend on the 'backspace' option
284284

285285
item action ~
286286
indent allow backspacing over autoindent
287-
eol allow backspacing over end-of-line (join lines)
288-
start allow backspacing over the start position of insert; CTRL-W and
289-
CTRL-U stop once at the start position
287+
eol allow backspacing over line breaks (join lines)
288+
start allow backspacing over the start of insert; CTRL-W and CTRL-U stop
289+
once at the start of insert.
290+
nostop like start, except CTRL-W and CTRL-U do not stop at the start of
291+
insert.
290292

291293
When 'backspace' is empty, Vi compatible backspacing is used. You cannot
292294
backspace over autoindent, before column 1 or before where insert started.
293295

294296
For backwards compatibility the values "0", "1", "2" and "3" are also allowed,
295-
see |'backspace'|.
297+
see 'backspace'.
296298

297299
If the 'backspace' option does contain "eol" and the cursor is in column 1
298300
when one of the three keys is used, the current line is joined with the
@@ -619,7 +621,7 @@ In 'list' mode, Virtual Replace mode acts as if it was not in 'list' mode,
619621
unless "L" is in 'cpoptions'.
620622

621623
Note that the only situations for which characters beyond the cursor should
622-
appear to move are in List mode |'list'|, and occasionally when 'wrap' is set
624+
appear to move are in List mode 'list', and occasionally when 'wrap' is set
623625
(and the line changes length to become shorter or wider than the width of the
624626
screen). In other cases spaces may be inserted to avoid following characters
625627
to move.
@@ -1136,11 +1138,11 @@ CTRL-X CTRL-Z Stop completion without changing the text.
11361138
AUTOCOMPLETION *ins-autocompletion*
11371139

11381140
Vim can display a completion menu as you type, similar to using |i_CTRL-N|,
1139-
but triggered automatically. See |'autocomplete'|. The menu items are
1140-
collected from the sources listed in the |'complete'| option.
1141+
but triggered automatically. See 'autocomplete'. The menu items are collected
1142+
from the sources listed in the 'complete' option.
11411143

11421144
Unlike manual |i_CTRL-N| completion, this mode uses a decaying timeout to keep
1143-
Vim responsive. Sources earlier in the |'complete'| list are given more time
1145+
Vim responsive. Sources earlier in the 'complete' list are given more time
11441146
(higher priority), but every source is guaranteed a time slice, however small.
11451147

11461148
This mode is fully compatible with other completion modes. You can invoke

0 commit comments

Comments
 (0)