From 06161eab9a4b9a475262a8f0f2674b6764b34da3 Mon Sep 17 00:00:00 2001 From: h-east Date: Wed, 20 Nov 2024 16:43:25 +0900 Subject: [PATCH] Update terminal.{txt,jax} --- doc/terminal.jax | 21 ++++++++++++++++++++- en/terminal.txt | 21 ++++++++++++++++++++- 2 files changed, 40 insertions(+), 2 deletions(-) diff --git a/doc/terminal.jax b/doc/terminal.jax index 6540105ac..b6b3f3f3d 100644 --- a/doc/terminal.jax +++ b/doc/terminal.jax @@ -1,4 +1,4 @@ -*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Nov 10 +*terminal.txt* For Vim バージョン 9.1. Last change: 2024 Nov 19 VIMリファレンスマニュアル by Bram Moolenaar @@ -1710,4 +1710,23 @@ Vimによってサイズ変更できない場合に便利である。 let g:termdebug_config['evaluate_in_popup'] = v:false endfunc < + +コントリビュートする ~ + *termdebug_contributing* +termdebug の改善への貢献は大歓迎である。 +ただし、開発プロセス中に作業を支援するために `echo` ステートメント (または同様 +のもの) のようなメカニズムが必要になることはよくあることだ。 +このため、以下が設定できる: > + let g:termdebug_config['debug'] = true +< +これにより、ソースコード内で使用できる `DEBUG` 変数が `true` に設定される。使 +用例を以下に示す: > + if exists('g:termdebug_loaded') + if DEBUG + Echoerr('Termdebug already loaded.') + endif + finish + endif +< + vim:tw=78:ts=8:noet:ft=help:norl: diff --git a/en/terminal.txt b/en/terminal.txt index 637277ab5..593dec77c 100644 --- a/en/terminal.txt +++ b/en/terminal.txt @@ -1,4 +1,4 @@ -*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 10 +*terminal.txt* For Vim version 9.1. Last change: 2024 Nov 19 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1737,4 +1737,23 @@ This can also be used in a "one-shot" manner: > let g:termdebug_config['evaluate_in_popup'] = v:false endfunc < + +Contributing ~ + *termdebug_contributing* +Contributions for termdebug improvements are welcome. +However, it is fairly common that during the development process you need some +mechanisms like `echo` statements (or similar) to help you in your job. +For this reason, you can set: > + let g:termdebug_config['debug'] = true +< +This sets the `DEBUG` variable to `true` in the source code that you can use +within the source code. An example of its usage follows: > + if exists('g:termdebug_loaded') + if DEBUG + Echoerr('Termdebug already loaded.') + endif + finish + endif +< + vim:tw=78:ts=8:noet:ft=help:norl: