Skip to content

Commit ac2d92b

Browse files
authored
Merge pull request #1792 from h-east/update-terminal
Update terminal.{txt,jax}
2 parents ff7bfe0 + 928c7a9 commit ac2d92b

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
lines changed

doc/terminal.jax

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Oct 27
1+
*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1655,13 +1655,17 @@ g:termdebug_config がない場合は、以下を使用できる: >
16551655
Termdebug は、signcolumn のブレークポイント ID の 16 進数を使用してブレークポ
16561656
イントを表す。"0xFF" より大きい場合は、実際には記号用の画面セルが 2 つしかない
16571657
ため、"F+" と表示される。
1658+
代わりに 10 進数のブレークポイントの目印を使用することもできる。その場合、99
1659+
より大きい ID は "9+" と表示される。
16581660

1659-
ブレークポイントの目印をカスタマイズしたい場合: >
1661+
ブレークポイントの目印をカスタマイズして、signcolumn に `>>` を表示するには: >
16601662
let g:termdebug_config['sign'] = '>>'
1661-
g:terminal_config がまだない場合は、以下を使用できる: >
1663+
10 進数 (基数 10) のブレークポイントの目印を使用するには: >
1664+
let g:termdebug_config['sign_decimal'] = 1
1665+
変数 g:termdebug_config がまだ存在しない場合は、以下を使用できる: >
16621666
let g:termdebug_config = {'sign': '>>'}
1663-
1664-
この後、ブレークポイントは目印欄に `>>` と表示される。
1667+
同様に 10 進数の目印を有効にするには: >
1668+
let g:termdebug_config = {'sign_decimal': 1}
16651669
16661670
16671671
ウィンドウツールバー ~

en/terminal.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*terminal.txt* For Vim version 9.1. Last change: 2024 Oct 27
1+
*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1683,13 +1683,17 @@ Change default signs ~
16831683
Termdebug uses the hex number of the breakpoint ID in the signcolumn to
16841684
represent breakpoints. If it is greater than "0xFF", then it will be displayed
16851685
as "F+", due to we really only have two screen cells for the sign.
1686+
You may also use decimal breakpoint signs instead, in which case IDs greater
1687+
than 99 will be displayed as "9+".
16861688

1687-
If you want to customize the breakpoint signs: >
1689+
If you want to customize the breakpoint signs to show `>>` in the signcolumn: >
16881690
let g:termdebug_config['sign'] = '>>'
1689-
If there is no g:terminal_config yet you can use: >
1691+
If you would like to use decimal (base 10) breakpoint signs: >
1692+
let g:termdebug_config['sign_decimal'] = 1
1693+
If the variable g:termdebug_config does not yet exist, you can use: >
16901694
let g:termdebug_config = {'sign': '>>'}
1691-
1692-
After this, breakpoints will be displayed as `>>` in the signcolumn.
1695+
Likewise, to enable decimal signs: >
1696+
let g:termdebug_config = {'sign_decimal': 1}
16931697
16941698
16951699
Window toolbar ~

0 commit comments

Comments
 (0)