Remove verbose option

Remove the command-line verbose option but let the ctrl-t c feature
print some of the verbose information (active config path/section).
This commit is contained in:
Martin Lund 2022-04-13 16:28:20 +02:00
parent 11df828f68
commit 28c880cdab
7 changed files with 13 additions and 29 deletions

View file

@ -38,6 +38,7 @@
#include <time.h>
#include <dirent.h>
#include "config.h"
#include "configfile.h"
#include "tty.h"
#include "print.h"
#include "options.h"
@ -163,6 +164,8 @@ void handle_command_sequence(char input_char, char previous_char, char *output_c
break;
case KEY_C:
tio_printf("Configuraiton:");
config_file_print();
options_print();
break;