We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1df9c5 commit 7077389Copy full SHA for 7077389
src/rime/gear/ascii_composer.cc
@@ -107,8 +107,9 @@ ProcessResult AsciiComposer::ProcessKeyEvent(const KeyEvent& key_event) {
107
}
108
// other keys
109
shift_key_pressed_ = ctrl_key_pressed_ = false;
110
- if (key_event.ctrl()) {
111
- return kNoop; // possible key binding Control+x
+ // possible key binding: Control+x, Shift+space
+ if (key_event.ctrl() || (key_event.shift() && ch == XK_space)) {
112
+ return kNoop;
113
114
Context* ctx = engine_->context();
115
bool ascii_mode = ctx->get_option("ascii_mode");
0 commit comments