diff options
author | Michael Vetter <jubalh@iodoru.org> | 2021-06-10 17:28:29 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2021-06-10 17:28:29 +0200 |
commit | fc593ef90eede11896c6ec4f4cbe46e23a667914 (patch) | |
tree | 8361f205470f6a28e28c688ed58e9ee998d34565 /src/ui | |
parent | a4deec8b8d26c7bd7312b972372b4ef3aab8eeda (diff) | |
download | profani-tty-fc593ef90eede11896c6ec4f4cbe46e23a667914.tar.gz |
Print editor command in /executable overview
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/console.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index 4494bce0..ad13f0cc 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -2130,6 +2130,10 @@ cons_executable_setting(void) } cons_show("Default '/url save' command (/executable urlsave) : %s", urlsave); g_free(urlsave); + + gchar* editor = prefs_get_string(PREF_COMPOSE_EDITOR); + cons_show("Default '/editor' command (/executable editor) : %s", editor); + g_free(editor); } void |