Move avy, ace-link & ace-window out of core

They don't belong there, and ace-window is no longer a core dependency
anyhow.
This commit is contained in:
Henrik Lissner 2019-05-01 01:47:27 -04:00
parent 8a525005a9
commit 4aa65aa019
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
7 changed files with 11 additions and 7 deletions

View file

@ -317,10 +317,6 @@ read-only or not file-visiting."
;; ;;
;;; Third party packages ;;; Third party packages
;;;###package avy
(setq avy-all-windows nil
avy-background t)
(def-package! all-the-icons (def-package! all-the-icons
:commands (all-the-icons-octicon all-the-icons-faicon all-the-icons-fileicon :commands (all-the-icons-octicon all-the-icons-faicon all-the-icons-fileicon
all-the-icons-wicon all-the-icons-material all-the-icons-alltheicon) all-the-icons-wicon all-the-icons-material all-the-icons-alltheicon)

View file

@ -23,9 +23,6 @@
(package! restart-emacs) (package! restart-emacs)
;; core-editor.el ;; core-editor.el
(package! ace-link)
(package! ace-window)
(package! avy)
(package! better-jumper (package! better-jumper
:recipe (:fetcher github :repo "gilbertw1/better-jumper")) :recipe (:fetcher github :repo "gilbertw1/better-jumper"))
(package! command-log-mode) (package! command-log-mode)

View file

@ -82,6 +82,7 @@ that works with the feature/popup module."
(defun +twitter/ace-link () (defun +twitter/ace-link ()
"Open a visible link, username or hashtag in a `twittering-mode' buffer." "Open a visible link, username or hashtag in a `twittering-mode' buffer."
(interactive) (interactive)
(require 'avy)
(let ((pt (avy-with +twitter/ace-link (let ((pt (avy-with +twitter/ace-link
(avy--process (avy--process
(+twitter--collect-links) (+twitter--collect-links)

View file

@ -2,3 +2,4 @@
;;; app/twitter/packages.el ;;; app/twitter/packages.el
(package! twittering-mode) (package! twittering-mode)
(package! avy)

View file

@ -14,6 +14,11 @@
;; ;;
;;; Reasonable defaults ;;; Reasonable defaults
;;;###package avy
(setq avy-all-windows nil
avy-background t)
(after! epa (after! epa
(setq epa-file-encrypt-to (setq epa-file-encrypt-to
(or epa-file-encrypt-to (or epa-file-encrypt-to

View file

@ -1,6 +1,9 @@
;; -*- no-byte-compile: t; -*- ;; -*- no-byte-compile: t; -*-
;;; config/default/packages.el ;;; config/default/packages.el
(package! avy)
(package! ace-link)
(unless (featurep! :editor evil) (unless (featurep! :editor evil)
(package! winum) (package! winum)
(package! expand-region)) (package! expand-region))

View file

@ -2,3 +2,4 @@
;;; tools/ein/packages.el ;;; tools/ein/packages.el
(package! ein) (package! ein)
(package! avy)