aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-core/spawn.lua
Commit message (Collapse)AuthorAgeFilesLines
* fix(spawn): always expand executable path on Windows (#2021)William Boman2025-09-301-6/+19
| | | | | | | | This fixes some issues with the logic for expanding paths on Windows. If a process is spawned with a custom `PATH` (either via the `env` or `env_raw` arg) we still expand the path manually but with a temporarily modified `vim.env.PATH`. Fixes #2009.
* fix(spawn): fix locating exepath on Windows systems using a Unix `'shell'` ↵William Boman2025-07-251-1/+16
| | | | | (#1991) Fixes #1961.
* fix(spawn): fix calling vim.fn when inside fast event loop on Windows (#1950)William Boman2025-05-151-0/+1
|
* fix(spawn): expand executable paths on Windows before passing to uv_spawn ↵William Boman2025-02-221-24/+13
| | | | | | (#1885) This fixes issues on Windows where uv_spawn fails to locate certain types of executables in PATH.
* refactor: turn StdioSink into a proper classWilliam Boman2025-02-191-13/+24
|
* fix: fix usage of deprecated Neovim APIs (#1703)William Boman2024-05-111-1/+3
|
* refactor: only schedule in a.scheduler() when in fast event (#1170)William Boman2023-04-021-3/+1
| | | Explicitly schedule via `a.wait(vim.schedule)` instead.
* style: enforce import order (#1092)William Boman2023-03-121-4/+4
| | | | | * chore(workflows): update dependencies * style: enforce import order
* Revert "fix(spawn): always expand cmd if PATH is not modified (#773)" (#783)William Boman2022-12-211-19/+21
| | | This reverts commit dd04b4105e84620685c37efb6ca935d282e11465.
* fix(spawn): always expand cmd if PATH is not modified (#773)William Boman2022-12-201-21/+19
| | | | | fix(spawn): always expand cmd on Windows Closes #720.
* feat: add provider interface (#601)William Boman2022-10-301-1/+1
|
* feat: more competent platform detection (#436)William Boman2022-09-171-6/+6
|
* refactor: introduce selene, harden type defs, and use proper EmmyLua syntax ↵William Boman2022-08-151-7/+7
| | | | (#296)
* chore: change emmylua annotation syntax from @ to : for comments (#73)William Boman2022-07-141-7/+7
|
* refactor: add mason-schemas and mason-core modules (#29)William Boman2022-07-081-0/+112
* refactor: add mason-schemas and move generated filetype map to mason-lspconfig * refactor: add mason-core module