Skip to content

Update terminal.{txt,jax} #1792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions doc/terminal.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Oct 27
*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10


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

ブレークポイントの目印をカスタマイズしたい場合: >
ブレークポイントの目印をカスタマイズして、signcolumn に `>>` を表示するには: >
let g:termdebug_config['sign'] = '>>'
g:terminal_config がまだない場合は、以下を使用できる: >
10 進数 (基数 10) のブレークポイントの目印を使用するには: >
let g:termdebug_config['sign_decimal'] = 1
変数 g:termdebug_config がまだ存在しない場合は、以下を使用できる: >
let g:termdebug_config = {'sign': '>>'}

この後、ブレークポイントは目印欄に `>>` と表示される。
同様に 10 進数の目印を有効にするには: >
let g:termdebug_config = {'sign_decimal': 1}


ウィンドウツールバー ~
Expand Down
14 changes: 9 additions & 5 deletions en/terminal.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*terminal.txt* For Vim version 9.1. Last change: 2024 Oct 27
*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 10


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

If you want to customize the breakpoint signs: >
If you want to customize the breakpoint signs to show `>>` in the signcolumn: >
let g:termdebug_config['sign'] = '>>'
If there is no g:terminal_config yet you can use: >
If you would like to use decimal (base 10) breakpoint signs: >
let g:termdebug_config['sign_decimal'] = 1
If the variable g:termdebug_config does not yet exist, you can use: >
let g:termdebug_config = {'sign': '>>'}

After this, breakpoints will be displayed as `>>` in the signcolumn.
Likewise, to enable decimal signs: >
let g:termdebug_config = {'sign_decimal': 1}


Window toolbar ~
Expand Down