File tree Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Expand file tree Collapse file tree 2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change 1- *terminal.txt* For Vim バージョン 9.1. Last change: 2024 Oct 27
1+ *terminal.txt* For Vim バージョン 9.1. Last change: 2024 Nov 09
22
33
44 VIMリファレンスマニュアル by Bram Moolenaar
@@ -1655,13 +1655,17 @@ g:termdebug_config がない場合は、以下を使用できる: >
16551655Termdebug は、signcolumn のブレークポイント ID の 16 進数を使用してブレークポ
16561656イントを表す。"0xFF" より大きい場合は、実際には記号用の画面セルが 2 つしかない
16571657ため、"F+" と表示される。
1658+ 代わりに 10 進数のブレークポイントの目印を使用することもできる。その場合、99
1659+ より大きい ID は "9+" と表示される。
16581660
1659- ブレークポイントの目印をカスタマイズしたい場合 : >
1661+ ブレークポイントの目印をカスタマイズして、signcolumn に `>>` を表示するには : >
16601662 let g:termdebug_config['sign'] = '>>'
1663+ 10 進数 (基数 10) のブレークポイントの目印を使用するには: >
1664+ let g:termdebug_config['sign_decimal'] = 1
16611665 g:terminal_config がまだない場合は、以下を使用できる: >
16621666 let g:termdebug_config = {'sign': '>>'}
1663-
1664- この後、ブレークポイントは目印欄に `>>` と表示される。
1667+ 同様に 10 進数の目印を有効にするには: >
1668+ let g:termdebug_config = {'sign_decimal': 1}
16651669
16661670
16671671ウィンドウツールバー ~
Original file line number Diff line number Diff line change 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 09
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1683,13 +1683,17 @@ Change default signs ~
16831683Termdebug uses the hex number of the breakpoint ID in the signcolumn to
16841684represent breakpoints. If it is greater than "0xFF", then it will be displayed
16851685as "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'] = '>>'
1691+ If you would like to use decimal (base 10) breakpoint signs: >
1692+ let g:termdebug_config['sign_decimal'] = 1
16891693 If there is no g:terminal_config yet 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
16951699Window toolbar ~
You can’t perform that action at this time.
0 commit comments