fix(completion/copilot): temporarily pin copilot.el

On later commits, I have intermittent weird issues while typing with a
copilot overlay active. Until I have to time further investigate and
report an issue, I will have to pin copilot.el to a earlier commit.
This commit is contained in:
2023-05-09 01:27:59 +01:00
parent 146d2311a9
commit bc8a2a40e7
3 changed files with 10 additions and 4 deletions

View File

@@ -8,9 +8,15 @@
(require 'cl-lib)
(let ((straight-current-profile 'pinned))
;; Pin copilot to commit before I started getting random character jumps while
;; typing with a copilot overlay active.
(straight-x-pin-package "copilot" "40cc5ef071f52ef9bc8545325a0e0fab44d6180d")
(straight-use-package '(copilot :host github :repo "zerolfx/copilot.el"
:files ("dist" "*.el"))))
(use-package copilot
:straight (:host github :repo "zerolfx/copilot.el"
:files ("dist" "*.el"))
:straight (:type built-in) ;; installed above in pinned block
:hook
(prog-mode . copilot-mode)