summaryrefslogtreecommitdiffstats
path: root/tests/minimal_init.vim
Commit message (Collapse)AuthorAgeFilesLines
* refactor(registry): change lua registries to not instantiate Package themselvesWilliam Boman2025-05-021-0/+2
| | | | | | | | Instead of having Lua registries instantiate package instances themselves we now do it in the installer of Lua registry sources. This aligns the behaviour of the Lua registry protocol with the other registry protocols.
* refactor!: refactor installer internals and add new Package class methods ↵William Boman2025-02-191-1/+16
| | | | | | | | | | | | | | | | | | | (#1523) This contains the following changes: 1) `Package:install()` now accepts a second, optional, callback argument which is called when installation finishes (successfully or not). 2) Adds a `Package:is_installing()` method. This contains the following breaking changes: 1) `Package:install()` will now error when called while an installation is already ongoing. Use the new `Package:is_installing()` method to check whether an installation is already running. This also refactors large portions of the tests by removing test globals, removing async_test, and adding the `mason-test` Lua module instead. Test helpers via globals are problematic to work with due to not being detected through tools like the Lua language server without additional configuration. This has been replaced with a Lua module `mason-test`. `async_test` has also been removed in favour of explicitly making use of the `mason-core.async` API. These changes stands for a significant portion of the diff.
* feat(installer): lock package installation (#1290)William Boman2023-05-181-1/+4
|
* feat: add github registry source capabilities (#1091)William Boman2023-03-121-4/+3
|
* feat: show warning message when exiting neovim with active installations (#725)William Boman2022-12-041-1/+1
|
* chore: update generated code (#99)williambotman[bot]2022-07-191-1/+1
| | | | | | | | | * chore: update generated code * prepend rtp * stub is_installed Co-authored-by: William Boman <william@redwill.se>
* feat(mason-lspconfig): add get_installed_servers() method & add more tests (#84)William Boman2022-07-161-1/+1
|
* fix(api): fix the :MasonUninstall command (#66)William Boman2022-07-131-0/+1
|
* refactor: move packages to mason-registry (#27)William Boman2022-07-081-2/+2
|
* mason.nvimWilliam Boman2022-07-071-3/+7
|
* add async managers (#536)William Boman2022-03-261-28/+3
|
* feat(ui): sort servers alphabetically, also add language hints (#361)William Boman2021-12-251-0/+25
|
* add some tests (#360)William Boman2021-12-251-0/+30