From 0bbaca0e08f699c73f6bee84fe1a37cc3219a922 Mon Sep 17 00:00:00 2001 From: dsl <1020889210@qq.com> Date: Mon, 3 Apr 2023 17:05:14 +0800 Subject: [PATCH] remove fast_pop mode --- src/rime/gear/speller.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rime/gear/speller.cc b/src/rime/gear/speller.cc index ce20dc1b..2160dc80 100644 --- a/src/rime/gear/speller.cc +++ b/src/rime/gear/speller.cc @@ -160,8 +160,8 @@ namespace rime { if (3 == len && belongs_to(c1, initials_) && string("qwrtsdfgzxcvbyphjklnm").find(ctx->input()[comfirmed_pos + 2]) != string::npos && boost::regex_match(schema, boost::regex("^sbfx$"))) { - if (string("qwrtsdfgzxcvbyphjklnm").find(ch) != string::npos - || string("aeuio").find(ch) != string::npos && !ctx->get_option("pro_word")) { + if (string("qwrtsdfgzxcvbyphjklnm").find(ch) != string::npos/* + || string("aeuio").find(ch) != string::npos && !ctx->get_option("pro_word")*/) { if (is_buffered) { ctx->set_caret_pos(ctx->caret_pos() - 1); ctx->ConfirmCurrentSelection();