summaryrefslogtreecommitdiff
path: root/src/core/wee-command.c
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-02-14 20:45:12 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-02-14 20:45:12 +0100
commit01153cd4785945013586b04f52469850f3d4344a (patch)
treeca8b531c4ada6ccbcaf0a55f74b7aff36eb1d524 /src/core/wee-command.c
parenteed0878231641ee374d519707dd467c184608a42 (diff)
downloadweechat-01153cd4785945013586b04f52469850f3d4344a.zip
core: add option "dirs" for command /debug
Diffstat (limited to 'src/core/wee-command.c')
-rw-r--r--src/core/wee-command.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/wee-command.c b/src/core/wee-command.c
index 30162f288..6576fe446 100644
--- a/src/core/wee-command.c
+++ b/src/core/wee-command.c
@@ -1414,6 +1414,10 @@ COMMAND_CALLBACK(debug)
{
debug_windows_tree ();
}
+ else if (string_strcasecmp (argv[1], "dirs") == 0)
+ {
+ debug_directories ();
+ }
else if (string_strcasecmp (argv[1], "set") == 0)
{
COMMAND_MIN_ARGS(4, "debug set");
@@ -5943,6 +5947,7 @@ command_init ()
"in log file\n"
" color: display infos about current color pairs\n"
" cursor: toggle debug for cursor mode\n"
+ " dirs: display directories\n"
" hdata: display infos about hdata (with free: remove "
"all hdata in memory)\n"
" hooks: display infos about hooks\n"
@@ -5958,6 +5963,7 @@ command_init ()
" || buffer"
" || color"
" || cursor verbose"
+ " || dirs"
" || hdata free"
" || hooks"
" || infolists"