mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(completion/copilot): work around freezing issue caused by visual-line-mode
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
:straight (:host github :repo "zerolfx/copilot.el"
|
||||
:files ("dist" "copilot.el"))
|
||||
:hook
|
||||
(prog-mode . copilot-mode)
|
||||
(prog-mode . siren-copilot-setup)
|
||||
|
||||
:general
|
||||
("C-<tab>" 'copilot-accept-completion)
|
||||
@@ -20,6 +20,14 @@
|
||||
"C-TAB" 'copilot-accept-completion
|
||||
"<backtab>" 'copilot-accept-completion)
|
||||
|
||||
:preface
|
||||
(defun siren-copilot-setup ()
|
||||
;; Disable visual-line-mode when copilot-mode is enabled. It prevents
|
||||
;; freezing issues, details:
|
||||
;; https://github.com/zerolfx/copilot.el/issues/15#issuecomment-1124244140
|
||||
(visual-line-mode -1)
|
||||
(copilot-mode))
|
||||
|
||||
:config
|
||||
(with-eval-after-load 'company
|
||||
;; Use company popup even when there's only one result
|
||||
|
||||
Reference in New Issue
Block a user