@@ -362,9 +362,9 @@ CTRL-O 1つコマンドを実行して、挿入モードに戻る *i_CTRL-
362362CTRL-\ CTRL-O CTRL-O と同様だがカーソルを移動させない *i_CTRL-\_CTRL-O*
363363CTRL-L 'insertmode' がオンのとき: ノーマルモードへ *i_CTRL-L*
364364CTRL-G u undo で元に戻す地点を新たに設定 *i_CTRL-G_u*
365- CTRL-G U don't break undo with next left/right cursor *i_CTRL-G_U*
366- movement (but only if the cursor stays
367- within same the line )
365+ CTRL-G U 次の左右へのカーソル移動で undo を分割しな *i_CTRL-G_U*
366+ い。(ただし、カーソルが同じ行の中にとどまっ
367+ た時のみ )
368368-----------------------------------------------------------------------
369369
370370Note: カーソルキーを押した時に挿入モードから抜けてしまったら、'noesckeys' オプ
@@ -402,7 +402,7 @@ CTRL-G u を使う例: >
402402
403403 これは改行ごとに undo を分割する。また、それを行う前に短縮入力の展開も行う。
404404
405- An example for using CTRL-G U: >
405+ CTRL-G U の使用例 : >
406406
407407 inoremap <Left> <C-G>U<Left>
408408 inoremap <Right> <C-G>U<Right>
@@ -414,13 +414,13 @@ An example for using CTRL-G U: >
414414 inoremap <expr> <End> repeat('<C-G>U<Right>', col('$') - col('.'))
415415 inoremap ( ()<C-G>U<Left>
416416
417- This makes it possible to use the cursor keys in Insert mode, without breaking
418- the undo sequence and therefore using | . | (redo) will work as expected.
419- Also entering a text like (with the "(" mapping from above) : >
417+ これにより undo を分割することなくカーソルキーを挿入モード内で使うことができ、
418+ | . | (および redo) は期待通りに動作するようになる。
419+ また次のような (上記の "(" マッピングをともなう) テキスト入力 : >
420420
421421 Lorem ipsum (dolor
422422
423- will be repeatable by the | . | to the expected
423+ は | . | によって期待通り繰り返すことができるようになる。
424424
425425 Lorem ipsum (dolor)
426426
0 commit comments