use-package
use-package copied to clipboard
A use-package declaration for simplifying your .emacs
With ```elisp (use-package some-lib :defer 1 :hook ((other-mode . 'some-lib/conf-fn))) (message "hook: %s" other-mode-hook) ``` I got with use-package-20210207.1926 ``` "hook: (some-lib)" ```` But now with use-package-20220910.25, it is ```...
Because of [this issue](https://github.com/syl20bnr/spacemacs/issues/15541) I need to change the location of the sources of the `auctex-latexmk` package to use a fork. Unfortunately I can't find any way to specify the...
This PR augments bind-keys to support passing a list of keymaps as the `:map` argument. When one wants to bind the same key/command pair in multiple keymaps, the current options...
It seems that packages will try to load even if it doesn't exist. This occurs even when `use-package-check-before-init` is set to `t`. For example the following will crash on startup...
Right now the docs for the `:mode` keyword show how to add a single regexp to the `auto-word-alist` but don't show how to add multiple regexps. 1. I could imagine...
Sometimes use-package reports an error like: Error (use-package): Cannot load X without giving any hint on what might be wrong, or any suggestion for what a good next step would...
This PR resolve issue reported at #827. Convert the vector to a string in the same way as bind-key and compare it to the value of `personal-keybindings`
I've been using this macro in my config to only load a package if it's installed: ```emacs-lisp (defmacro use-package-optional (name &rest args) "A wrapper around use-package that will only load...
Hi, I’m using emacs 29 and the bundled use-package. I’ve git cloned some packages and load them with the :load-path parameter. This works fine except I can’t find any evidence...
I wonder if it would be useful / appropriate for `use-package` to validate package dependencies loading a package via `load-path`. As it stands now, using core emacs functionality, when using...