unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* circular list for ELPAs
@ 2022-11-14 16:05 Emanuel Berg
  2022-11-16  1:04 ` John Haman
  0 siblings, 1 reply; 3+ messages in thread
From: Emanuel Berg @ 2022-11-14 16:05 UTC (permalink / raw)
  To: help-gnu-emacs

Circular list for the package manager.

Pop until you drop! B)

Maybe it can be defined in a oneliner to get rid of the unused
binding but when I do that it just ...

If anything can start anew, then everything must continue!

;;; -*- lexical-binding: t -*-
;;
;; this file:
;;   https://dataswamp.org/~incal/emacs-init/elpa.el

(require 'cl-lib)
(require 'close)
(require 'package)
(require 'scroll)

(cl-pushnew '("melpa" . "https://melpa.org/packages/")
            package-archives :test #'equal)

(let*((pack-status '("" "available" "built-in"  "dependency"
                        "incompat"  "installed" "new") )
      (_ (setf (cdr (last pack-status)) pack-status)) )

  (defun pack-filter (&optional status)
    (interactive)
    (unless status (setq status (pop pack-status)))
    (package-menu-filter-by-status status)
    (message (if (string-empty-p status)
                 "all"
               status) ))

  (declare-function pack-filter nil) )

(defun elpa (&optional fetch)
  (interactive "P")
  (if fetch
      (list-packages)
    (let ((buf (get-buffer "*Packages*"))) ; hardcoded in package.el 28 times
      (if (and buf (bufferp buf))
          (pop-to-buffer buf)
        (list-packages) ))))

(defalias 'melpa #'elpa)

(let ((kmap package-menu-mode-map))
  (set-close-key        kmap)
  (set-pane-scroll-keys kmap)
  (set-vertical-keys    kmap)
  (define-key kmap "\t" #'pack-filter) )

-- 
underground experts united
https://dataswamp.org/~incal




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-11-16  2:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-14 16:05 circular list for ELPAs Emanuel Berg
2022-11-16  1:04 ` John Haman
2022-11-16  2:15   ` Emanuel Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).