File tree Expand file tree Collapse file tree 2 files changed +18
-10
lines changed Expand file tree Collapse file tree 2 files changed +18
-10
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 10
2
2
3
3
4
4
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1655,13 +1655,17 @@ g:termdebug_config がない場合は、以下を使用できる: >
1655
1655
Termdebug は、signcolumn のブレークポイント ID の 16 進数を使用してブレークポ
1656
1656
イントを表す。"0xFF" より大きい場合は、実際には記号用の画面セルが 2 つしかない
1657
1657
ため、"F+" と表示される。
1658
+ 代わりに 10 進数のブレークポイントの目印を使用することもできる。その場合、99
1659
+ より大きい ID は "9+" と表示される。
1658
1660
1659
- ブレークポイントの目印をカスタマイズしたい場合 : >
1661
+ ブレークポイントの目印をカスタマイズして、signcolumn に `>>` を表示するには : >
1660
1662
let g:termdebug_config['sign'] = '>>'
1661
- g:terminal_config がまだない場合は、以下を使用できる: >
1663
+ 10 進数 (基数 10) のブレークポイントの目印を使用するには: >
1664
+ let g:termdebug_config['sign_decimal'] = 1
1665
+ 変数 g:termdebug_config がまだ存在しない場合は、以下を使用できる: >
1662
1666
let g:termdebug_config = {'sign': '>>'}
1663
-
1664
- この後、ブレークポイントは目印欄に `>>` と表示される。
1667
+ 同様に 10 進数の目印を有効にするには: >
1668
+ let g:termdebug_config = {'sign_decimal': 1}
1665
1669
1666
1670
1667
1671
ウィンドウツールバー ~
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 10
2
2
3
3
4
4
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1683,13 +1683,17 @@ Change default signs ~
1683
1683
Termdebug uses the hex number of the breakpoint ID in the signcolumn to
1684
1684
represent breakpoints. If it is greater than "0xFF", then it will be displayed
1685
1685
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+".
1686
1688
1687
- If you want to customize the breakpoint signs: >
1689
+ If you want to customize the breakpoint signs to show `>>` in the signcolumn : >
1688
1690
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: >
1690
1694
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}
1693
1697
1694
1698
1695
1699
Window toolbar ~
You can’t perform that action at this time.
0 commit comments