@@ -112,11 +112,12 @@ q{0-9a-zA-Z"} タイプした文字をレジスタ{0-9a-zA-Z"}にレコーデ
112
112
無効化される。マッピングや | :normal | の中でも機能しな
113
113
い。
114
114
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: レコーディングはない}
120
121
121
122
q レコーディングを終了する。(実装のメモ: レコーディング
122
123
を終了する 'q' は、それがマッピングの結果であってもレ
@@ -467,16 +468,17 @@ NOTE: デバッグモードは未完成である。デバッグはVimの動作
467
468
*>bt*
468
469
*>backtrace*
469
470
*>where*
470
- backtrace Show the call stacktrace for current debugging session.
471
+ backtrace 現在のデバッグセッションのバックトレースを表示する。
471
472
bt
472
473
where
473
474
*>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
+ タックフレームへ移動する。
476
478
*>up*
477
- up Goes one level up from call stacktrace.
479
+ up 1 つ上のスタックフレームへ移動する。
478
480
*>down*
479
- down Goes one level down from call stacktrace.
481
+ down 1 つ下のスタックフレームへ移動する。
480
482
481
483
デバッグモードのコマンドについて:
482
484
- 補完はできない。通常のExコマンドのみ補完できる。
@@ -488,19 +490,19 @@ NOTE: デバッグモードは未完成である。デバッグはVimの動作
488
490
- 同じ名前のExコマンドを使うにはコロンを付けること:
489
491
":cont", ":next", ":finish" (省略時も)
490
492
491
- The backtrace shows the hierarchy of function calls, e.g. :
493
+ バックトレースは、関数呼び出しの階層を表示する。例えば :
492
494
>bt ~
493
495
3 function One[3] ~
494
496
2 Two[3] ~
495
497
->1 Three[3] ~
496
498
0 Four ~
497
- line 1: let four = 4 ~
499
+ 行 1: let four = 4 ~
498
500
499
- The "->" points to the current frame. Use "up", "down" and "frame N" to
500
- select another frame.
501
+ "->" は現在いるフレームを指す。 "up"、 "down"、 "frame N" を使うことで、別のフ
502
+ レームを選択できる。
501
503
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
+ レームの、現在行の内容を表示する方法はまだない。
504
506
505
507
506
508
ブレークポイントの定義
0 commit comments