0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ddskkの変換中にcopilot-modeの補完を抑制する

Posted at

copilotの補完候補が出るとddskkの変換候補が表示されなくなったり、おかしくなるので変換時だけ抑制している。
日本語の補完もそれなりに便利なので、変換時以外はcopilotによる補完がきくようにしている。

  :config
  (defun my/copilot-disable-during-skk ()
    (memq skk-henkan-mode '(on active))) ;; 変換前・変換中の両方を抑制

  (add-to-list 'copilot-disable-display-predicates #'my/copilot-disable-during-skk)
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?