Skip to content

Commit 2483751

Browse files
authored
Merge pull request #1363 from vim-jp/hh-update-terminal
Update terminal.{txt,jax}
2 parents 9c269b7 + 2a0f579 commit 2483751

File tree

2 files changed

+32
-10
lines changed

2 files changed

+32
-10
lines changed

doc/terminal.jax

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim バージョン 9.0. Last change: 2023 Aug 23
1+
*terminal.txt* For Vim バージョン 9.0. Last change: 2023 Nov 08
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -43,6 +43,7 @@
4343
その他のコマンド |termdebug-commands|
4444
イベント |termdebug-events|
4545
プロンプトモード |termdebug-prompt|
46+
マッピング |termdebug-mappings|
4647
通信 |termdebug-communication|
4748
カスタマイズ |termdebug-customizing|
4849

@@ -1447,18 +1448,22 @@ TermdebugStopPost デバッグの終了後、gdb 関連ウィンドウが閉じ
14471448
g:termdebug_config がない場合は、以下を使用できます: >
14481449
let g:termdebug_use_prompt = 1
14491450
<
1450-
*termdebug_map_K*
1451-
K は通常 |:Evaluate| にマッピングされています。これが不要な場合は: >
1451+
マッピング ~
1452+
*termdebug_map_K* *termdebug-mappings*
1453+
K へのバッファローカル (|:map-local|) マッピングがすでに存在している場合を除
1454+
き、K キーは通常 |:Evaluate| にマップされています。これが不要な場合は: >
14521455
let g:termdebug_config['map_K'] = 0
14531456
g:termdebug_config がない場合は、以下を使用できます: >
14541457
let g:termdebug_map_K = 0
14551458
<
14561459
*termdebug_map_minus*
1457-
- は通常 |:Down| にマッピングされています。これが不要な場合は: >
1460+
- へのバッファローカルマッピングがすでに存在している場合を除き、- は通常
1461+
|:Down| にマップされています。これが不要な場合は: >
14581462
let g:termdebug_config['map_minus'] = 0
14591463
<
14601464
*termdebug_map_plus*
1461-
+ は通常 |:Up| にマッピングされています。これが不要な場合は: >
1465+
+ へのバッファローカルマッピングがすでに存在している場合を除き、+ は通常 |:Up|
1466+
にマップされています。これが不要な場合は: >
14621467
let g:termdebug_config['map_plus'] = 0
14631468
<
14641469
*termdebug_disasm_window*
@@ -1470,6 +1475,9 @@ Asm ウィンドウをデフォルトで表示させたい場合、"disasm_windo
14701475
g:termdebug_config がない場合は、以下を使用できます: >
14711476
let g:termdebug_disasm_window = 15
14721477
1以上の任意の値を設定でき、その値が Asm ウィンドウの高さになります。
1478+
カレントウィンドウに十分な水平方向のスペースがある場合、垂直方向に分割され、
1479+
Asm ウィンドウがソースコードウィンドウと並べて表示されます (高さのオプションは
1480+
使用されません)。
14731481

14741482
*termdebug_variables_window*
14751483
Var ウィンドウをデフォルトで表示させたい場合、"variables_window" フラグに 1 を
@@ -1480,6 +1488,9 @@ Var ウィンドウをデフォルトで表示させたい場合、"variables_wi
14801488
g:termdebug_config がない場合は、以下を使用できます: >
14811489
let g:termdebug_variables_window = 15
14821490
1 以上の任意の値を設定でき、その値が Var ウィンドウの高さになります。
1491+
カレントウィンドウに十分な水平方向のスペースがある場合、垂直方向に分割され、
1492+
Var ウィンドウがソースコードウィンドウと並べて表示されます (高さのオプションは
1493+
使用されません)。
14831494

14841495
通信 ~
14851496
*termdebug-communication*

en/terminal.txt

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim version 9.0. Last change: 2023 Aug 23
1+
*terminal.txt* For Vim version 9.0. Last change: 2023 Nov 08
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -42,6 +42,7 @@ If the result is "1" you have it.
4242
Other commands |termdebug-commands|
4343
Events |termdebug-events|
4444
Prompt mode |termdebug-prompt|
45+
Mappings |termdebug-mappings|
4546
Communication |termdebug-communication|
4647
Customizing |termdebug-customizing|
4748

@@ -1461,18 +1462,22 @@ Prompt mode can be used even when the |+terminal| feature is present with: >
14611462
If there is no g:termdebug_config you can use: >
14621463
let g:termdebug_use_prompt = 1
14631464
<
1464-
*termdebug_map_K*
1465-
The K key is normally mapped to |:Evaluate|. If you do not want this use: >
1465+
Mappings ~
1466+
*termdebug_map_K* *termdebug-mappings*
1467+
The K key is normally mapped to |:Evaluate| unless a buffer local (|:map-local|)
1468+
mapping to K already exists. If you do not want this use: >
14661469
let g:termdebug_config['map_K'] = 0
14671470
If there is no g:termdebug_config you can use: >
14681471
let g:termdebug_map_K = 0
14691472
<
14701473
*termdebug_map_minus*
1471-
The - key is normally mapped to |:Down|. If you do not want this use: >
1474+
The - key is normally mapped to |:Down| unless a buffer local mapping to the -
1475+
key already exists. If you do not want this use: >
14721476
let g:termdebug_config['map_minus'] = 0
14731477
<
14741478
*termdebug_map_plus*
1475-
The + key is normally mapped to |:Up|. If you do not want this use: >
1479+
The + key is normally mapped to |:Up| unless a buffer local mapping to the +
1480+
key already exists. If you do not want this use: >
14761481
let g:termdebug_config['map_plus'] = 0
14771482
<
14781483
*termdebug_disasm_window*
@@ -1483,6 +1488,9 @@ If you want the Asm window shown by default, set the "disasm_window" flag to
14831488
If there is no g:termdebug_config you can use: >
14841489
let g:termdebug_disasm_window = 15
14851490
Any value greater than 1 will set the Asm window height to that value.
1491+
If the current window has enough horizontal space, it will be vertically split
1492+
and the Asm window will be shown side by side with the source code window (and
1493+
the height option won't be used).
14861494

14871495
*termdebug_variables_window*
14881496
If you want the Var window shown by default, set the "variables_window" flag
@@ -1493,6 +1501,9 @@ height: >
14931501
If there is no g:termdebug_config you can use: >
14941502
let g:termdebug_variables_window = 15
14951503
Any value greater than 1 will set the Var window height to that value.
1504+
If the current window has enough horizontal space, it will be vertically split
1505+
and the Var window will be shown side by side with the source code window (and
1506+
the height options won't be used).
14961507

14971508
Communication ~
14981509
*termdebug-communication*

0 commit comments

Comments
 (0)