Redefine >> macro as >-> in >.el

I created a strangely named Elisp module, >.el, just to appease the CI gods. My
gut tells me that this is a desperate idea and fails the smell test. I'm pretty
eager to pass the linting phase of my Elisp CI, however, and I can always revert
this.
This commit is contained in:
William Carroll 2020-09-01 16:26:39 +01:00
parent 718899c629
commit 75a9a156a0
8 changed files with 53 additions and 26 deletions

View file

@ -22,6 +22,7 @@
(require 'set)
(require 'maybe)
(require 'macros)
(require '>)
(require 'password-store)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@ -79,8 +80,8 @@
(setq erc-autojoin-channels-alist
(->> irc-server->channels
(alist-map-values #'cycle-to-list)
(alist-map-keys (>> (s-chop-prefix "irc.")
(s-chop-suffix ".net")))))
(alist-map-keys (>-> (s-chop-prefix "irc.")
(s-chop-suffix ".net")))))
(defcustom irc-install-kbds? t
"When t, install the keybindings defined herein.")