From 25b276246b63de819b6fdc82cb61258fe6a5eb97 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Fri, 29 Apr 2016 18:15:49 +0200 Subject: [PATCH] More debug output Signed-off-by: Sebastian Ramacher --- zathura/completion.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/completion.c b/zathura/completion.c index 016215a..5e269f6 100644 --- a/zathura/completion.c +++ b/zathura/completion.c @@ -105,6 +105,7 @@ list_files(zathura_t* zathura, const char* current_path, const char* current_fil if (girara_list_size(res) == 1) { char* path = girara_list_nth(res, 0); if (g_file_test(path, G_FILE_TEST_IS_DIR) == true) { + girara_debug("changing to directory %s", path); char* newpath = g_strdup_printf("%s/", path); girara_list_clear(res); girara_list_append(res, newpath);