about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2021-06-10 17:28:29 +0200
committerMichael Vetter <jubalh@iodoru.org>2021-06-10 17:28:29 +0200
commitfc593ef90eede11896c6ec4f4cbe46e23a667914 (patch)
tree8361f205470f6a28e28c688ed58e9ee998d34565 /src/ui
parenta4deec8b8d26c7bd7312b972372b4ef3aab8eeda (diff)
downloadprofani-tty-fc593ef90eede11896c6ec4f4cbe46e23a667914.tar.gz
Print editor command in /executable overview
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/console.c4
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
;vc@akkartik.com> 2020-07-11 00:02:29 -0700 committer Kartik Agaram <vc@akkartik.com> 2020-07-11 00:02:29 -0700 6631' href='/akkartik/mu/commit/html/400.mu.html?h=main&id=1c349ac7c571a97978e1cbbe726430ae9c741972'>1c349ac7 ^
762107fd ^
1c349ac7 ^
3350c34a ^





f0e146fc ^




























































































1c349ac7 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158