summaryrefslogtreecommitdiff
path: root/test/lisp/use-package
Commit message (Collapse)AuthorAgeFilesLines
* ; Add 2023 to copyright years.Eli Zaretskii2023-01-011-1/+1
|
* ; Normalize GPLv3 license statements in new filesStefan Kangas2022-12-091-3/+5
|
* Drop key-chord.el support from use-packageStefan Kangas2022-12-081-169/+0
| | | | | | | | * lisp/use-package/bind-chord.el: * lisp/use-package/use-package-chords.el: * test/lisp/use-package/use-package-chords-tests.el: Delete files. * doc/misc/use-package.texi (use-package-chords): Delete section. Ref: https://lists.gnu.org/r/emacs-devel/2022-12/msg00052.html
* Fix use-package testsStefan Kangas2022-12-032-3/+19
| | | | | | * test/lisp/use-package/use-package-chords-tests.el: * test/lisp/use-package/use-package-tests.el: Remove local variables section. Require 'ert' and fix copyright header.
* Remove tests lacking a copyright assignment for nowStefan Kangas2022-11-271-31/+0
| | | | | * use-package-tests.el (use-package-test/pre-post-hooks-with-:config) (use-package-test/pre-post-hooks-without-:config): Remove tests.
* Merge pull request from skangas/dir-localsJohn Wiegley2022-11-162-2/+0
|\ | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/1023
| * Add .dir-locals.elStefan Kangas2022-11-162-2/+0
| |
* | Normalize GPLv3 license statementsStefan Kangas2022-11-162-31/+19
|/
* Revert "Allow multiple keymaps in :map argument"John Wiegley2022-11-151-81/+4
|
* Merge remote-tracking branch 'origin/master' into pr-830John Wiegley2022-11-152-7/+20
|\
| * Various checkdoc fixesStefan Kangas2022-11-141-1/+1
| |
| * Allow passing the SPEC-TYPE argument via :custom-faceAndrey Listopadov2022-10-291-0/+7
| | | | | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/1008 Copyright-paperwork-exempt: yes
| * Use face-spec-set instead of custom-set-facesAndrey Listopadov2022-10-171-6/+6
| | | | | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/934 Copyright-paperwork-exempt: yes
| * Merge pull request from conao3/add-commands-keywordJohn Wiegley2022-10-121-0/+6
| |\ | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/917
| | * add testcaseNaoya Yamashita2021-02-231-0/+6
| | |
* | | bind-keys supports passing a list of keymaps as :map argumentJacob First2022-09-291-4/+81
|/ /
* | Merge pull request from CeleritasCelery/masterJohn Wiegley2022-09-091-5/+7
|\ \ | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/743
| * | Fix tests and documentation for hookTroy Hinckley2021-05-171-5/+7
| |/
* | Merge pull request from ↵John Wiegley2022-08-071-0/+161
|\ \ | | | | | | | | | | | | waymondo/use-package-chords-autoloading-and-mapping-improvements GitHub-reference: https://github.com/jwiegley/use-package/issues/778
| * | update bind-chords to use of eval-after-load when maps declaredJustin Talbott2019-06-201-0/+161
| | | | | | | | | | | | | | | | | | | | | also improve :chord keyword syntax processing to more closely mimic bind-keys since the same binding normalizer is used. also add tests for use-package-chords to cover these test cases
* | | Merge pull request from phst/fletJohn Wiegley2022-08-071-34/+21
|\ \ \ | | | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/849
| * | | Remove uses of deprecated ‘flet’ macroPhilipp Stephani2021-02-241-34/+21
| | |/ | |/| | | | | | | | | | | | | | | | | | | Instead, use the non-deprecated ‘cl-flet’ and ‘cl-letf’ macros from the ‘cl-lib’ package. This also allows us to remove the ‘plist-delete’ helper function, which was only used to effectively un-deprecate ‘flet’.
* | | Merge pull request from conao3/add-custom-face-descriptionJohn Wiegley2022-08-071-0/+13
|\ \ \ | |/ / |/| | GitHub-reference: https://github.com/jwiegley/use-package/issues/863
| * | add multiple and eval :custom-face usageNaoya Yamashita2020-08-211-0/+13
| | | | | | | | | | | | This commit follows suggestion at https://github.com/jwiegley/use-package/issues/696, https://github.com/jwiegley/use-package/issues/821
* | | Add use-package-use-theme and avoid missing theme errorsTed Zlatanov2021-02-061-0/+8
| | |
* | | Create new "use-package" themse and use it for :custom with ↵Ted Zlatanov2020-11-291-12/+9
| | | | | | | | | | | | custom-theme-set-variables
* | | set saved-variable-comment from :customTed Zlatanov2020-11-291-0/+13
|/ / | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/861
* | Merge branch 'master' into patch-1Jimmy Yuen Ho Wong2020-07-221-1/+5
|\ \
| * | Fix broken test due toJimmy Yuen Ho Wong2020-07-121-1/+5
| | | | | | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/850
* | | better testsJimmy Yuen Ho Wong2020-07-081-3/+9
| | |
* | | add test forJimmy Yuen Ho Wong2020-07-081-0/+6
|/ / | | | | GitHub-reference: https://github.com/jwiegley/use-package/issues/845
* | Add special value back again, in case needed for backwards compatJohn Lee2020-05-091-0/+1
| | | | | | | | | | | | | | | | I don't know why this special value exists, but perhaps old client code uses it. The additional `t' in the macro expansion is accidental but not harmful I guess. Copyright-paperwork-exempt: yes
* | Even when there's no :config, run any pre/post config hooksJohn Lee2020-05-091-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | i.e., following the existing docs for use-package-inject-hooks, these hooks are run: use-package--foo--pre-config-hook use-package--foo--post-config-hook This should make config customisations more predictable (for example, spacemacs uses these hooks extensively to allow 'layers' to be customised). I got rid of the "special" default value for :config, because it doesn't seem to be treated any differently than nil. Fixes https://github.com/jwiegley/use-package/issues/785 Copyright-paperwork-exempt: yes
* | Update testsRadon Rosborough2019-07-151-22/+44
|/
* Make custom-face evaluate elispVincent Zhang2019-05-291-1/+1
| | | | | | Fix https://github.com/jwiegley/use-package/issues/696. Copyright-paperwork-exempt: yes
* Fix use-package-normalize-function testsAlex Branham2018-06-131-3/+3
|
* Enable lexical bindingAlex Branham2018-06-131-1/+1
| | | | This supersedes https://github.com/jwiegley/use-package/issues/617 and closes https://github.com/jwiegley/use-package/issues/648
* Revert "Merge pull request from jabranham/lexical-bindings"John Wiegley2018-01-271-1/+1
| | | | | This reverts commit d21787f1d64a740c0e00899835d9200a0e4690df, reversing changes made to fd8a3510fd1a555b925f57b2870917e3c4ea0206. GitHub-reference: https://github.com/jwiegley/use-package/issues/617
* Revert "Move variable bindings to the bottom of each file"John Wiegley2018-01-271-2/+1
| | | | This reverts commit c29193bf0724633adf7183dad2d0b6faf7d029ab.
* Move variable bindings to the bottom of each fileJohn Wiegley2018-01-271-1/+2
|
* Test still requires clAlex Branham2018-01-271-0/+1
|
* Use lexical bindings and remove cl packageAlex Branham2018-01-271-2/+1
|
* All the second argument in use-package-defaults lists to be a functionJohn Wiegley2017-12-151-0/+12
| | | | Address the question raised in https://github.com/jwiegley/use-package/issues/591
* Add a test related toJohn Wiegley2017-12-131-0/+13
| | | GitHub-reference: https://github.com/jwiegley/use-package/issues/589
* Add more tests related to issueJohn Wiegley2017-12-131-1/+24
| | | GitHub-reference: https://github.com/jwiegley/use-package/issues/572
* bind-keys fixes related toJohn Wiegley2017-12-101-1/+27
| | | GitHub-reference: https://github.com/jwiegley/use-package/issues/482
* Add a clarifying test forJohn Wiegley2017-12-101-0/+16
| | | GitHub-reference: https://github.com/jwiegley/use-package/issues/482
* Fix a scoping issues with multiple occurrences of :bindJohn Wiegley2017-12-091-0/+15
| | | | Fixes https://github.com/jwiegley/use-package/issues/585
* Remove several unnecessary calls to `ignore'John Wiegley2017-12-071-92/+60
|
* Add another :bind testJohn Wiegley2017-12-071-0/+18
|