LoginSignup
1
0

More than 3 years have passed since last update.

cider replで入力補完の候補をキーバインドから選択する

Posted at

spacemacsにて。

companyの入力補完はcider replでも効いてくれるが、矢印キーを使わないと選択できない。

Ctrl + jCtrl + kで選択したい。

結論、.spacemacsに以下を書く。

.spacemacs
  (with-eval-after-load 'cider
    (evil-define-key 'insert cider-repl-mode-map
      (kbd "C-j") 'company-select-next
      (kbd "C-k") 'company-select-previous))

※設定ファイル.spacemacsへ行くには、たとえばSpace f e d

1
0
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
1
0