jabranham / system-packages

Moved to gitlab
https://gitlab.com/jabranham/system-packages
GNU General Public License v3.0
39 stars 12 forks source link

hydra issues #8

Closed jabranham closed 7 years ago

jabranham commented 8 years ago

My current setup:

(use-package system-packages
  :load-path "~/code/system-packages"
  :bind ("<f7>" . hydra/system-packages/body) 
  :config
  (defhydra hydra/system-packages ()
    "Manage system packages"
    ("i" system-packages-install "install")
    ("s" system-packages-search "search")
    ("U" system-packages-uninstall "uninstall")
    ("u" system-packages-update "update")
    ("l" system-packages-list-installed-packages "list installed")
    ("O" system-packages-remove-orphaned "remove orphans")
    ("e" helm-list-elisp-packages "emacs packages")))

returns an error about memory exhausted when I hit f7 u. Why is this and how to fix?

jabranham commented 7 years ago

Fixed by changing the hydra to exit after upgrading:

         ("u" system-packages-update "update" :exit t)