GithubHelp home page GithubHelp logo

Comments (3)

tkita avatar tkita commented on June 25, 2024

再現しました。
たぶん skk-henkan() あたりの気がしますので、調査継続します。

from ddskk.

tkita avatar tkita commented on June 25, 2024

SPC の打鍵で関数が連鎖します。

skk-start-henkan()
=> skk-henkan()
=> skk-annotation-find-and-show()
=> skk-annotation-show()
=> skk-annotation-wait-for-input()

どうやら skk-annotation-wait-for-input() に原因があるようです。
標準状態つまり skk-kakutei-key"\C-j" であれば、

(key-binding skk-annotation-browse-key)
=> open-line

しかし、(setq skk-kakutei-key (kbd "C-o")) 状態では

(key-binding skk-annotation-browse-key)
=>skk-insert

どう直せば正解なのか、もう少し時間かかります。

from ddskk.

tkita avatar tkita commented on June 25, 2024

skk-kakutei-keyskk-insert() が割り当たるのは仕様です(skk-compile-rule-list() 参照)。
ちょっと場当たり的ですが、以下のパッチでどうでしょうか?

$ git diff
diff --git a/skk-annotation.el b/skk-annotation.el
index f5a90c7..ec1c464 100644
--- a/skk-annotation.el
+++ b/skk-annotation.el
@@ -747,7 +747,8 @@ NO-PREVIOUS-ANNOTATION B$r;XDj (\\[Universal-Argument] \\[skk-annotation-ad
                     digit nil
                     char  nil)
               (skk-annotation-show-2 annotation)))
-           ((eq command browse-command)
+           ((and (eq command browse-command)
+                  (not (eq browse-command 'skk-insert)))
             (setq list (delq browse-command list))
             (setq urls nil)
             (when (and word (setq cache (skkannot-cache word sources)))

from ddskk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.