Skip to content

Commit c9ca307

Browse files
committed
Translate some remaining hunks in repeat.jax
1 parent 1234569 commit c9ca307

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

doc/repeat.jax

+18-16
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,12 @@ q{0-9a-zA-Z"} タイプした文字をレジスタ{0-9a-zA-Z"}にレコーデ
112112
無効化される。マッピングや |:normal| の中でも機能しな
113113
い。
114114

115-
Note: If the register being used for recording is also
116-
used for |y| and |p| the result is most likely not
117-
what is expected, because the put will paste the
118-
recorded macro and the yank will overwrite the
119-
recorded macro. {Vi: no recording}
115+
Note: もしレコーディングに使っているレジスタが、その最
116+
中に |y||p| で使われた場合、恐らく期待しない結果に
117+
なるだろう。なぜなら、|p| で貼り付けられる内容は記録さ
118+
れたマクロのものになり、|y| でコピーを行うと記録された
119+
マクロを上書きしてしまうからである。
120+
{Vi: レコーディングはない}
120121

121122
q レコーディングを終了する。(実装のメモ: レコーディング
122123
を終了する 'q' は、それがマッピングの結果であってもレ
@@ -467,16 +468,17 @@ NOTE: デバッグモードは未完成である。デバッグはVimの動作
467468
*>bt*
468469
*>backtrace*
469470
*>where*
470-
backtrace Show the call stacktrace for current debugging session.
471+
backtrace 現在のデバッグセッションのバックトレースを表示する。
471472
bt
472473
where
473474
*>frame*
474-
frame N Goes to N bactrace level. + and - signs make movement
475-
relative. E.g., ":frame +3" goes three frames up.
475+
frame N N 番目のスタックフレームへ移動する。+ や - 記号で、相
476+
対的に移動できる。例えば、":frame +3" で 3 つ上のス
477+
タックフレームへ移動する。
476478
*>up*
477-
up Goes one level up from call stacktrace.
479+
up 1 つ上のスタックフレームへ移動する。
478480
*>down*
479-
down Goes one level down from call stacktrace.
481+
down 1 つ下のスタックフレームへ移動する。
480482

481483
デバッグモードのコマンドについて:
482484
- 補完はできない。通常のExコマンドのみ補完できる。
@@ -488,19 +490,19 @@ NOTE: デバッグモードは未完成である。デバッグはVimの動作
488490
- 同じ名前のExコマンドを使うにはコロンを付けること:
489491
":cont", ":next", ":finish" (省略時も)
490492

491-
The backtrace shows the hierarchy of function calls, e.g.:
493+
バックトレースは、関数呼び出しの階層を表示する。例えば:
492494
>bt ~
493495
3 function One[3] ~
494496
2 Two[3] ~
495497
->1 Three[3] ~
496498
0 Four ~
497-
line 1: let four = 4 ~
499+
1: let four = 4 ~
498500

499-
The "->" points to the current frame. Use "up", "down" and "frame N" to
500-
select another frame.
501+
"->" は現在いるフレームを指す。"up""down""frame N" を使うことで、別のフ
502+
レームを選択できる。
501503

502-
In the current frame you can evaluate the local function variables. There is
503-
no way to see the command at the current line yet.
504+
現在いるフレームの、その関数内でのローカル変数にアクセスできる。現在いるフ
505+
レームの、現在行の内容を表示する方法はまだない。
504506

505507

506508
ブレークポイントの定義

0 commit comments

Comments
 (0)