diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-17 21:51:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-06-17 21:51:18 +0200 |
commit | 2225ac4e56289b1badc7a5ee9dcb522b8e8aa3f2 (patch) | |
tree | cada0254e77311ce9168e428eaf9fc6e3ee7d1aa /doc/ja | |
parent | fa785e8668b51f80e112c7c927648635b2d4f565 (diff) | |
download | weechat-2225ac4e56289b1badc7a5ee9dcb522b8e8aa3f2.zip |
core: add option "certs" in command /debug
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/includes/autogen_user_commands.ja.adoc | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/doc/ja/includes/autogen_user_commands.ja.adoc b/doc/ja/includes/autogen_user_commands.ja.adoc index a4a793668..f2cd6ac94 100644 --- a/doc/ja/includes/autogen_user_commands.ja.adoc +++ b/doc/ja/includes/autogen_user_commands.ja.adoc @@ -1280,30 +1280,31 @@ Examples: /debug list set <plugin> <level> dump [<plugin>] - buffer|color|infolists|memory|tags|term|windows + buffer|color|infolists|libs|certs|memory|tags|term|windows mouse|cursor [verbose] hdata [free] time <command> - list: デバッグレベルの設定されたプラグインをリストアップ - set: プラグインのデバッグレベルを設定 - plugin: プラグインの名前 ("core" は WeeChat コアを意味する) - level: プラグインのデバッグレベル (0 はデバッグの無効化) - dump: WeeChat ログファイルにメモリダンプを保存 (WeeChat がクラッシュした場合と同じダンプが書き込まれます) - buffer: ログファイルに 16 進値でバッファの内容をダンプ - color: 現在の色ペアに関する情報を表示 - cursor: カーソルモードのデバッグを切り替え - dirs: ディレクトリを表示 - hdata: hdata に関する情報を表示 (free を付けた場合: メモリから全ての hdata を削除) - hooks: フックに関する情報を表示 -infolists: インフォリストに関する情報を表示 - libs: 使用中の外部ライブラリに関する情報を表示 - memory: メモリ使用量に関する情報を表示 - mouse: マウスのデバックを切り替え - tags: 行のタグを表示 - term: 端末に関する情報を表示 - windows: ウィンドウツリーの情報を表示 - time: コマンドの実行時間や現在のバッファへのテキスト送信にかかった時間を測定 + list: list plugins with debug levels + set: set debug level for plugin + plugin: name of plugin ("core" for WeeChat core) + level: debug level for plugin (0 = disable debug) + dump: save memory dump in WeeChat log file (same dump is written when WeeChat crashes) + buffer: dump buffer content with hexadecimal values in log file + color: display infos about current color pairs + cursor: toggle debug for cursor mode + dirs: display directories + hdata: display infos about hdata (with free: remove all hdata in memory) + hooks: display infos about hooks +infolists: display infos about infolists + libs: display infos about external libraries used + certs: display number of loaded trusted certificate authorities + memory: display infos about memory usage + mouse: toggle debug for mouse + tags: display tags for lines + term: display infos about terminal + windows: display windows tree + time: measure time to execute a command or to send text to the current buffer ---- [[command_weechat_eval]] |