diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-11-21 20:45:25 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-11-21 20:45:41 +0100 |
commit | baab9cc7c52e011a10cf5b1d97d6707e6e067597 (patch) | |
tree | a2dcce2df3099f5e26d63f7dab2ade1491efa76d /doc | |
parent | a8639969c5d0c8ecc950332a18480b2cb499173d (diff) | |
download | weechat-baab9cc7c52e011a10cf5b1d97d6707e6e067597.zip |
core: add option `unicode` in command `/debug`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/includes/autogen_user_commands.de.adoc | 50 | ||||
-rw-r--r-- | doc/en/includes/autogen_user_commands.en.adoc | 8 | ||||
-rw-r--r-- | doc/en/weechat_dev.en.adoc | 1 | ||||
-rw-r--r-- | doc/fr/includes/autogen_user_commands.fr.adoc | 8 | ||||
-rw-r--r-- | doc/fr/weechat_dev.fr.adoc | 1 | ||||
-rw-r--r-- | doc/it/includes/autogen_user_commands.it.adoc | 8 | ||||
-rw-r--r-- | doc/ja/includes/autogen_user_commands.ja.adoc | 8 | ||||
-rw-r--r-- | doc/ja/weechat_dev.ja.adoc | 2 | ||||
-rw-r--r-- | doc/pl/includes/autogen_user_commands.pl.adoc | 14 | ||||
-rw-r--r-- | doc/sr/includes/autogen_user_commands.sr.adoc | 56 | ||||
-rw-r--r-- | doc/sr/weechat_dev.sr.adoc | 2 |
11 files changed, 110 insertions, 48 deletions
diff --git a/doc/de/includes/autogen_user_commands.de.adoc b/doc/de/includes/autogen_user_commands.de.adoc index ac24f14e9..7344ae2d3 100644 --- a/doc/de/includes/autogen_user_commands.de.adoc +++ b/doc/de/includes/autogen_user_commands.de.adoc @@ -1343,27 +1343,35 @@ Beispiele: mouse|cursor [verbose] hdata [free] time <command> - - 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) - hooks: zeigt die aktiven Hooks an (bei einer Erweiterung: detaillierte Informationen über Hooks werden angezeigt, die von der Erweiterung erstellt wurden) - buffer: speichert den Bufferinhalt als hexadezimale Ausgabe in die Protokolldatei - certs: gibt die Anzahl geladener vertrauenswürdiger Zertifizierungsstellen aus - 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) -infolists: zeigt Information über die Infolists an - libs: zeigt an welche externen Bibliotheken verwendet werden - 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: zeigt Informationen über das Terminal an - windows: zeigt die Fensterstruktur an - time: misst die Zeit um einen Befehl auszuführen oder um einen Text in den aktuellen Buffer zu senden + unicode <string> + + 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) + hooks: display infos about hooks (with a plugin: display detailed info about hooks created by the plugin) + buffer: dump buffer content with hexadecimal values in log file + certs: display number of loaded trusted certificate authorities + 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) +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 + time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/en/includes/autogen_user_commands.en.adoc b/doc/en/includes/autogen_user_commands.en.adoc index b12fad0da..565ad5d83 100644 --- a/doc/en/includes/autogen_user_commands.en.adoc +++ b/doc/en/includes/autogen_user_commands.en.adoc @@ -1343,6 +1343,7 @@ Examples: mouse|cursor [verbose] hdata [free] time <command> + unicode <string> list: list plugins with debug levels set: set debug level for plugin @@ -1364,6 +1365,13 @@ infolists: display infos about infolists term: display infos about terminal windows: display windows tree time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/en/weechat_dev.en.adoc b/doc/en/weechat_dev.en.adoc index a8d5c8f6c..eb5825ba6 100644 --- a/doc/en/weechat_dev.en.adoc +++ b/doc/en/weechat_dev.en.adoc @@ -405,6 +405,7 @@ WeeChat "core" is located in following directories: | core/ | Root of unit tests for core. | test-core-arraylist.cpp | Tests: arraylists. | test-core-calc.cpp | Tests: calculation of expressions. +| test-core-command.cpp | Tests: commands. | test-core-config-file.cpp | Tests: configuration files. | test-core-crypto.cpp | Tests: cryptographic functions. | test-core-dir.cpp | Tests: directory/file functions. diff --git a/doc/fr/includes/autogen_user_commands.fr.adoc b/doc/fr/includes/autogen_user_commands.fr.adoc index b120795e5..7d2c17087 100644 --- a/doc/fr/includes/autogen_user_commands.fr.adoc +++ b/doc/fr/includes/autogen_user_commands.fr.adoc @@ -1343,6 +1343,7 @@ Exemples : cursor|mouse [verbose] hdata [free] time <commande> + unicode <chaîne> list : lister les extensions avec leur niveau de debug set : définir le niveau de debug pour l'extension @@ -1364,6 +1365,13 @@ infolists : afficher des infos sur les infolists term : afficher des infos sur le terminal windows : afficher l'arbre des fenêtres time : mesurer le temps pour exécuter une commande ou pour envoyer du texte au tampon courant + unicode : afficher des informations sur les caractères unicode dans la chaîne (évaluée, voir /help eval) + +Exemples : + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/fr/weechat_dev.fr.adoc b/doc/fr/weechat_dev.fr.adoc index df3c9ac97..99cab7f7f 100644 --- a/doc/fr/weechat_dev.fr.adoc +++ b/doc/fr/weechat_dev.fr.adoc @@ -407,6 +407,7 @@ Le cœur de WeeChat est situé dans les répertoires suivants : | core/ | Racine des tests unitaires pour le cœur. | test-core-arraylist.cpp | Tests : listes avec tableau (« arraylists »). | test-core-calc.cpp | Tests : calcul d'expressions. +| test-core-command.cpp | Tests : commandes. | test-core-config-file.cpp | Tests : fichiers de configuration. | test-core-crypto.cpp | Tests : fonctions cryptographiques. | test-core-dir.cpp | Tests : répertoires/fichiers. diff --git a/doc/it/includes/autogen_user_commands.it.adoc b/doc/it/includes/autogen_user_commands.it.adoc index cee8775a3..6596f18e4 100644 --- a/doc/it/includes/autogen_user_commands.it.adoc +++ b/doc/it/includes/autogen_user_commands.it.adoc @@ -1343,6 +1343,7 @@ Examples: mouse|cursor [verbose] hdata [free] time <command> + unicode <string> list: list plugins with debug levels set: set debug level for plugin @@ -1364,6 +1365,13 @@ infolists: display infos about infolists term: display infos about terminal windows: display windows tree time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/ja/includes/autogen_user_commands.ja.adoc b/doc/ja/includes/autogen_user_commands.ja.adoc index b5add3232..aac975406 100644 --- a/doc/ja/includes/autogen_user_commands.ja.adoc +++ b/doc/ja/includes/autogen_user_commands.ja.adoc @@ -1343,6 +1343,7 @@ Examples: mouse|cursor [verbose] hdata [free] time <command> + unicode <string> list: list plugins with debug levels set: set debug level for plugin @@ -1364,6 +1365,13 @@ infolists: display infos about infolists term: display infos about terminal windows: display windows tree time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index 16e3d06e1..8b51ed256 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -429,6 +429,8 @@ WeeChat "core" は以下のディレクトリに配置されています: // TRANSLATION MISSING | test-core-calc.cpp | Tests: calculation of expressions. // TRANSLATION MISSING +| test-core-command.cpp | Tests: commands. +// TRANSLATION MISSING | test-core-config-file.cpp | Tests: configuration files. // TRANSLATION MISSING | test-core-crypto.cpp | Tests: cryptographic functions. diff --git a/doc/pl/includes/autogen_user_commands.pl.adoc b/doc/pl/includes/autogen_user_commands.pl.adoc index b3b4d8602..c9acf08e9 100644 --- a/doc/pl/includes/autogen_user_commands.pl.adoc +++ b/doc/pl/includes/autogen_user_commands.pl.adoc @@ -1336,12 +1336,13 @@ Przykłady: ---- /debug list - set <wtyczka> <poziom> - dump|hooks [<wtyczka>] + set <plugin> <level> + dump|hooks [<plugin>] buffer|certs|color|dirs|infolists|libs|memory|tags|term|windows mouse|cursor [verbose] hdata [free] - time <komenda> + time <command> + unicode <string> list: list plugins with debug levels set: set debug level for plugin @@ -1363,6 +1364,13 @@ infolists: display infos about infolists term: display infos about terminal windows: display windows tree time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/sr/includes/autogen_user_commands.sr.adoc b/doc/sr/includes/autogen_user_commands.sr.adoc index 2bcf146d1..24dbaf982 100644 --- a/doc/sr/includes/autogen_user_commands.sr.adoc +++ b/doc/sr/includes/autogen_user_commands.sr.adoc @@ -1337,33 +1337,41 @@ stop: зауставља режим померања курсора ---- /debug list - set <додатак> <ниво> - dump|hooks [<додатак>] + set <plugin> <level> + dump|hooks [<plugin>] buffer|certs|color|dirs|infolists|libs|memory|tags|term|windows mouse|cursor [verbose] hdata [free] - time <команда> - - list: исписује додатке са дибаг нивоима - set: поставља дибаг ниво за додатак - додатак: име додатка („core” за WeeChat језгро) - ниво: дибаг ниво за додатак (0 = искључује дибаг) - dump: чува садржај меморије у WeeChat лог фајл (исти садржај се записује када се програм WeeChat сруши) - hooks: исписује инфо о кукама (са додатком: приказује детаљне информације о кукама које креира додатак) - buffer: уписује у лог фајл садржај бафера као хексадецималне вредности - certs: приказује број учитаних ауторитета сертификата којима се верује - color: приказује инфо о тренутним паровима боја - cursor: пребацује дибаг за режим померања курсора - dirs: исписује директоријуме - hdata: исписује инфо о hdata (са free: уклања све hdata из меморије) -infolists: исписује инфо о инфолистама - libs: исписује инфо о коришћеним спољним библиотекама - memory: исписује инфо о употреби меморије - mouse: пребацује дибаг за миша - tags: исписује ознаке за линије - term: исписује инфо о терминалу - windows: исписује стабло прозора - time: мери време извршавања команде или слања текста текућем баферу + time <command> + unicode <string> + + 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) + hooks: display infos about hooks (with a plugin: display detailed info about hooks created by the plugin) + buffer: dump buffer content with hexadecimal values in log file + certs: display number of loaded trusted certificate authorities + 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) +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 + time: measure time to execute a command or to send text to the current buffer + unicode: display information about unicode chars in string (evaluated, see /help eval) + +Examples: + /debug set irc 1 + /debug mouse verbose + /debug time /filter toggle + /debug unicode ${chars:${\u26C0}-${\u26CF}} ---- [[command_weechat_eval]] diff --git a/doc/sr/weechat_dev.sr.adoc b/doc/sr/weechat_dev.sr.adoc index bba04f58a..02f841f77 100644 --- a/doc/sr/weechat_dev.sr.adoc +++ b/doc/sr/weechat_dev.sr.adoc @@ -407,6 +407,8 @@ WeeChat „језгро” се налази у следећим директо | core/ | Корен unit тестова језгра. | test-core-arraylist.cpp | Тестови: arraylists. | test-core-calc.cpp | Тестови: калкулација израза. +// TRANSLATION MISSING +| test-core-command.cpp | Tests: commands. | test-core-config-file.cpp | Тестови: конфигурациони фајлови. | test-core-crypto.cpp | Тестови: криптографске функције. | test-core-dir.cpp | Тестови: функције директоријума/фајла. |