-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHelpWindow.cpp
More file actions
46 lines (43 loc) · 2.21 KB
/
HelpWindow.cpp
File metadata and controls
46 lines (43 loc) · 2.21 KB
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
#include "HelpWindow.hpp"
namespace tdcurses {
void generate_help_info(Outputter &out) {
out << "Key bindings:\n";
out << " Global:\n";
out << " C-r : force refresh\n";
out << " C-a + [hjkl] : change active window\n";
out << " q/C-q/Esc : close the popup window and open the previous one\n";
out << " Q/C-Q : close all popup windows\n";
out << " F1 : show this help\n";
out << " F7 : open settings\n";
out << " F8 : open current user profile\n";
out << " F12 : open debug info window\n";
out << " Dialog list:\n";
out << " I : open chat info window\n";
out << " s : search chat to open\n";
out << " : : activate command line\n";
out << " / : search chats\n";
out << " f : choose folder\n";
out << " Chat window:\n";
out << " Enter/I : open message actions window\n";
out << " Escape/C-q/C-Q/Q : clear multiselection / clear search\n";
out << " i : compose a message\n";
out << " : : activate command line\n";
out << " / : search chats\n";
out << " F : quick send file\n";
out << " Space : select message\n";
out << " v : view attachment\n";
out << " r : compose a reply\n";
out << " e : edit text message\n";
out << " L : open reactions window\n";
out << " y : copy message contents to primary buffer\n";
out << " Y : copy message contents to clipboard\n";
out << " f : forward messages\n";
out << " d : delete messages for all\n";
out << " D : delete messages for only for yourself\n";
out << " q : select a quote and compose a reply\n";
out << " Compose window:\n";
out << " Alt-m : toggle markdown parsing\n";
out << " Alt-s : toggle no sound send\n";
out << " Alt-a : add attachement\n";
}
} // namespace tdcurses