-
emacs-version:Development version e1e8da5e4f19 on master branch;
(package-initialize)
(require 'corfu)
(require 'corfu-terminal)
(evil-mode)
(corfu-terminal-mode +1)
(use-package corfu
;; TAB-and-Go customizations
:custom
(corfu-cycle t) ;; Enable cycling for `corfu-next/previous'
(corfu-preselect 'prompt) ;; Always preselect the prompt
;; Use TAB for cycling, default is `corfu-complete'.
:bind
(:map corfu-map
("TAB" . corfu-next)
([tab] . corfu-next)
("S-TAB" . corfu-previous)
([backtab] . corfu-previous))
:init
(require 'cape)
(corfu-indexed-mode)
(dotimes (i 10) ;; use M-num to select index
(define-key corfu-mode-map
(kbd (format "M-%s" i))
(kbd (format "C-%s <tab>" i))))
) a.py
Alt-x corfu-mode
and exactly
|
Beta Was this translation helpful? Give feedback.
Answered by
minad
Nov 9, 2024
Replies: 2 comments 1 reply
-
Hi, I cannot reproduce this problem. Does it only happen in the presence of Evil mode? Can you please create a reproducer with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Passky
-
And post a solution
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I cannot reproduce this problem. Does it only happen in the presence of Evil mode? Can you please create a reproducer with
corfu-mode
andcorfu-indexed-mode
only?