mirror of
https://github.com/weechat/weechat.git
synced 2026-07-08 10:43:13 +02:00
core: add option "libs" for command /debug, add signal "debug_libs"
This commit is contained in:
@@ -191,23 +191,24 @@ Beispiele:
|
||||
mouse|cursor [verbose]
|
||||
hdata [free]
|
||||
|
||||
list: zeigt alle Erweiterungen mit Debuglevel an
|
||||
set: setzt den Level der Protokollierung für eine Erweiterung
|
||||
plugin: Name der Erweiterung ("core" für den WeeChat Kern)
|
||||
level: Debuglevel der Erweiterung (0 = deaktiviert Debug)
|
||||
dump: Speicherabbild in die WeeChat Protokolldatei schreiben (wie bei einem Programmabsturz)
|
||||
buffer: speichert den Bufferinhalt als hexadezimale Ausgabe in die Protokolldatei
|
||||
color: zeigt Informationen über die aktuellen Farbpaarungen an
|
||||
cursor: schaltet den debug-Modus für den Cursor-Modus ein/aus
|
||||
dirs: Verzeichnisse werden angezeigt
|
||||
hdata: zeigt Informationen zu hdata an (mittels free werden alle hdata Informationen aus dem Speicher entfernt)
|
||||
hooks: zeigt die aktiven Hooks an
|
||||
infolists: zeigt Information über die Infolists an
|
||||
memory: gibt Informationen über den genutzten Speicher aus
|
||||
mouse: schaltet den debug-Modus für den Maus-Modus ein/aus
|
||||
tags: zeigt für jede einzelne Zeile die dazugehörigen Schlagwörter an
|
||||
term: gibt Informationen über das Terminal und verfügbare Farben aus
|
||||
windows: zeigt die Fensterstruktur an
|
||||
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
|
||||
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
|
||||
----
|
||||
|
||||
[[command_weechat_eval]]
|
||||
|
||||
@@ -203,6 +203,7 @@ Examples:
|
||||
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
|
||||
memory: display infos about memory usage
|
||||
mouse: toggle debug for mouse
|
||||
tags: display tags for lines
|
||||
|
||||
@@ -7743,6 +7743,10 @@ Arguments:
|
||||
String: plugin name |
|
||||
Dump request
|
||||
|
||||
| weechat | debug_libs |
|
||||
- |
|
||||
Display external libraries used
|
||||
|
||||
| weechat | filter_added |
|
||||
Pointer: filter |
|
||||
Filter added
|
||||
|
||||
@@ -203,6 +203,7 @@ extension: nom de l'extension ("core" pour le cœur de WeeChat)
|
||||
hdata: afficher des infos sur les hdata (avec free: supprimer tous les hdata en mémoire)
|
||||
hooks: afficher des infos sur les hooks
|
||||
infolists: afficher des infos sur les infolists
|
||||
libs: afficher des infos sur les bibliothèques externes utilisées
|
||||
memory: afficher des infos sur l'utilisation de la mémoire
|
||||
mouse: activer/désactiver le debug pour la souris
|
||||
tags: afficher les étiquettes pour les lignes
|
||||
|
||||
@@ -7861,6 +7861,10 @@ Paramètres :
|
||||
Chaîne : nom d'extension |
|
||||
Requête de "dump"
|
||||
|
||||
| weechat | debug_libs |
|
||||
- |
|
||||
Affichage des bibliothèques externes utilisées
|
||||
|
||||
| weechat | filter_added |
|
||||
Pointeur : filtre |
|
||||
Filtre ajouté
|
||||
|
||||
@@ -191,23 +191,24 @@ Esempi:
|
||||
mouse|cursor [verbose]
|
||||
hdata [free]
|
||||
|
||||
list: elenca i plugin con i livelli di debug
|
||||
set: imposta il livello di debug per il plugin
|
||||
plugin: nome del plugin ("core" per il core di WeeChat)
|
||||
livello: livello di debug per il plugin (0 = disattiva debug)
|
||||
dump: salva un dump della memoria nel file di log di WeeChat (lo stesso dump viene salvato in caso di crash di WeeChat)
|
||||
buffer: esegue un dump del contenuto del buffer con valori esadecimali nel file di log
|
||||
color: mostra informazioni sulle coppie di colore correnti
|
||||
cursor: abilita/disabilita debug per la modalità cursore
|
||||
dirs: mostra le directory
|
||||
hdata: mostra informazioni su hdata (con free: rimuove tutti gli hdata in memoria)
|
||||
hooks: mostra informazioni sugli hook
|
||||
infolists: mostra informazioni sulle liste info
|
||||
memory: mostra informazioni sull'uso della memoria
|
||||
mouse: abilita/disabilita debug per il mouse
|
||||
tags: mostra tag per le righe
|
||||
term: mostra informazioni sul terminale
|
||||
windows: mostra l'albero delle finestre
|
||||
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
|
||||
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
|
||||
----
|
||||
|
||||
[[command_weechat_eval]]
|
||||
|
||||
@@ -7836,6 +7836,11 @@ Argomenti:
|
||||
Stringa: nome plugin |
|
||||
Richiesta di dump
|
||||
|
||||
// TRANSLATION MISSING
|
||||
| weechat | debug_libs |
|
||||
- |
|
||||
Display external libraries used
|
||||
|
||||
| weechat | filter_added |
|
||||
Puntatore: filtro |
|
||||
Filtro aggiunto
|
||||
|
||||
@@ -191,23 +191,24 @@ stop: カーソルモードを終了
|
||||
mouse|cursor [verbose]
|
||||
hdata [free]
|
||||
|
||||
list: デバッグレベルの設定されたプラグインをリストアップ
|
||||
set: プラグインのデバッグレベルを設定
|
||||
plugin: プラグインの名前 ("core" は WeeChat コアを意味する)
|
||||
level: プラグインのデバッグレベル (0 はデバッグの無効化)
|
||||
dump: WeeChat ログファイルにメモリダンプを保存 (WeeChat がクラッシュした場合と同じダンプが書き込まれます)
|
||||
buffer: ログファイルに 16 進値でバッファの内容をダンプ
|
||||
color: 現在の色ペアに関する情報を表示
|
||||
cursor: カーソルモードのデバッグを切り替え
|
||||
dirs: ディレクトリを表示
|
||||
hdata: hdata に関する情報を表示 (free を付ければ: メモリから全ての hdata を削除)
|
||||
hooks: フックに関する情報を表示
|
||||
infolists: infolist に関する情報を表示
|
||||
memory: メモリ使用量に関する情報を表示
|
||||
mouse: マウスのデバックを切り替え
|
||||
tags: 行のタグを表示
|
||||
term: ターミナルに関する情報を表示
|
||||
windows: ウィンドウツリーの情報を表示
|
||||
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
|
||||
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
|
||||
----
|
||||
|
||||
[[command_weechat_eval]]
|
||||
|
||||
Reference in New Issue
Block a user