featurep! will be renamed modulep! in the future, so it's been deprecated. They have identical interfaces, and can be replaced without issue. featurep! was never quite the right name for this macro. It implied that it had some connection to featurep, which it doesn't (only that it was similar in purpose; still, Doom modules are not features). To undo such implications and be consistent with its namespace (and since we're heading into a storm of breaking changes with the v3 release anyway), now was the best opportunity to begin the transition.
13 lines
524 B
EmacsLisp
13 lines
524 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; os/tty/packages.el
|
|
|
|
(if (modulep! +osc)
|
|
(package! clipetty
|
|
:recipe (:host github :repo "spudlyo/clipetty")
|
|
:pin "01b39044b9b65fa4ea7d3166f8b1ffab6f740362")
|
|
;; Despite its name, this works for macOS as well.
|
|
(package! xclip :pin "4772beb5579e13910c89c482a2e41271253c646b"))
|
|
|
|
;; NOTE Despite the evil-* prefix, evil-terminal-cursor-changer does not depend
|
|
;; on evil (anymore).
|
|
(package! evil-terminal-cursor-changer :pin "12ea9c0438c67e560b3866dc78b5c7d1d93f8cc5")
|