about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--config/bindings.go4
-rw-r--r--doc/aerc-tutorial.7.scd3
2 files changed, 5 insertions, 2 deletions
diff --git a/config/bindings.go b/config/bindings.go
index a9a57c5..e74624c 100644
--- a/config/bindings.go
+++ b/config/bindings.go
@@ -266,8 +266,8 @@ func init() {
 	keyNames["c-u"] = KeyStroke{tcell.KeyCtrlU, 0}
 	keyNames["c-v"] = KeyStroke{tcell.KeyCtrlV, 0}
 	keyNames["c-w"] = KeyStroke{tcell.KeyCtrlW, 0}
-	keyNames["c-x"] = KeyStroke{tcell.KeyCtrlX, 0}
-	keyNames["c-y"] = KeyStroke{tcell.KeyCtrlY, 0}
+	keyNames["c-x"] = KeyStroke{tcell.KeyCtrlX, rune(tcell.KeyCAN)}
+	keyNames["c-y"] = KeyStroke{tcell.KeyCtrlY, 0} // TODO: runes for the rest
 	keyNames["c-z"] = KeyStroke{tcell.KeyCtrlZ, 0}
 	keyNames["c-]"] = KeyStroke{tcell.KeyCtrlLeftSq, 0}
 	keyNames["c-\\"] = KeyStroke{tcell.KeyCtrlBackslash, 0}
diff --git a/doc/aerc-tutorial.7.scd b/doc/aerc-tutorial.7.scd
index ef857da..15f7bb3 100644
--- a/doc/aerc-tutorial.7.scd
+++ b/doc/aerc-tutorial.7.scd
@@ -88,6 +88,9 @@ email, adding a blank line between the email's headers and body.
 The message review screen is shown next. You have a chance now to revise the
 email before it's sent. Press *y* to send the email if it looks good.
 
+*Note*: when using the terminal in the message view, you can summon aerc's ex
+command line by using *<C-x>*. ':' is sent to the editor.
+
 # USING THE TERMINAL
 
 aerc comes with an embedded terminal, which you've already used to view and edit
2f6a78157b875e12eb7dc8cd95c1152'>^
dcc060c7 ^
e6056999 ^
a654e4ec ^
4690ce81 ^
a654e4ec ^


dcc060c7 ^

a654e4ec ^





dcc060c7 ^

a654e4ec ^
dcc060c7 ^




a0decd22 ^



dcc060c7 ^

a0decd22 ^
dcc060c7 ^


4690ce81 ^

a0decd22 ^




4690ce81 ^

a0decd22 ^
4690ce81 ^


dcc060c7 ^


32b8fac2 ^
dcc060c7 ^







32b8fac2 ^
dcc060c7 ^


32b8fac2 ^

dcc060c7 ^

a0decd22 ^
dcc060c7 ^


4690ce81 ^
dcc060c7 ^

4690ce81 ^
32b8fac2 ^


dcc060c7 ^

32b8fac2 ^

dcc060c7 ^

4690ce81 ^







32b8fac2 ^
dcc060c7 ^


4690ce81 ^
dcc060c7 ^

4690ce81 ^
32b8fac2 ^
4690ce81 ^

dcc060c7 ^
4690ce81 ^
dcc060c7 ^



a654e4ec ^
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