aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2025-05-06 23:30:27 +0200
committerGitHub <noreply@github.com>2025-05-06 23:30:27 +0200
commit7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e (patch)
tree774be39734bd2a13dc15d44b0d03312158c817f9 /lua
parenttests: fix flaky test (#1924) (diff)
downloadmason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar.gz
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar.bz2
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar.lz
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar.xz
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.tar.zst
mason-7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e.zip
docs: update references to mason-org/mason.nvim (#1925)
Diffstat (limited to 'lua')
-rw-r--r--lua/mason-core/fetch.lua2
-rw-r--r--lua/mason-core/fs.lua2
-rw-r--r--lua/mason-registry/api.lua2
-rw-r--r--lua/mason/health.lua2
-rw-r--r--lua/mason/ui/components/header.lua2
-rw-r--r--lua/mason/ui/components/help/init.lua4
6 files changed, 7 insertions, 7 deletions
diff --git a/lua/mason-core/fetch.lua b/lua/mason-core/fetch.lua
index 26ddb0f7..c1f01dc2 100644
--- a/lua/mason-core/fetch.lua
+++ b/lua/mason-core/fetch.lua
@@ -8,7 +8,7 @@ local powershell = require "mason-core.installer.managers.powershell"
local spawn = require "mason-core.spawn"
local version = require "mason.version"
-local USER_AGENT = ("mason.nvim %s (+https://github.com/williamboman/mason.nvim)"):format(version.VERSION)
+local USER_AGENT = ("mason.nvim %s (+https://github.com/mason-org/mason.nvim)"):format(version.VERSION)
local TIMEOUT_SECONDS = 30
diff --git a/lua/mason-core/fs.lua b/lua/mason-core/fs.lua
index 7c4ee5d0..5b194c4f 100644
--- a/lua/mason-core/fs.lua
+++ b/lua/mason-core/fs.lua
@@ -39,7 +39,7 @@ local function make_module(uv)
function M.rmrf(path)
assert(
Path.is_subdirectory(settings.current.install_root_dir, path),
- ("Refusing to rmrf %q which is outside of the allowed boundary %q. Please report this error at https://github.com/williamboman/mason.nvim/issues/new"):format(
+ ("Refusing to rmrf %q which is outside of the allowed boundary %q. Please report this error at https://github.com/mason-org/mason.nvim/issues/new"):format(
path,
settings.current.install_root_dir
)
diff --git a/lua/mason-registry/api.lua b/lua/mason-registry/api.lua
index be5d4d92..3c40deaa 100644
--- a/lua/mason-registry/api.lua
+++ b/lua/mason-registry/api.lua
@@ -3,7 +3,7 @@ local fetch = require "mason-core.fetch"
local api = {}
--- https://github.com/williamboman/mason-registry-api
+-- https://github.com/mason-org/mason-registry-api
local BASE_URL = "https://api.mason-registry.dev"
local stringify_params = _.compose(_.join "&", _.map(_.join "="), _.sort_by(_.head), _.to_pairs)
diff --git a/lua/mason/health.lua b/lua/mason/health.lua
index 5ac2cd1b..fcef1832 100644
--- a/lua/mason/health.lua
+++ b/lua/mason/health.lua
@@ -246,7 +246,7 @@ end
---@async
local function check_mason()
providers.github
- .get_latest_release("williamboman/mason.nvim")
+ .get_latest_release("mason-org/mason.nvim")
:on_success(
---@param latest_release GitHubRelease
function(latest_release)
diff --git a/lua/mason/ui/components/header.lua b/lua/mason/ui/components/header.lua
index 0c9ba50a..f53e3ae7 100644
--- a/lua/mason/ui/components/header.lua
+++ b/lua/mason/ui/components/header.lua
@@ -29,7 +29,7 @@ return function(state)
p.highlight(settings.current.ui.keymaps.toggle_help),
p.none " for help",
}),
- { p.Comment "https://github.com/williamboman/mason.nvim" },
+ { p.Comment "https://github.com/mason-org/mason.nvim" },
},
}),
Ui.When(not state.info.registry_update.in_progress and #uninstalled_registries > 0, function()
diff --git a/lua/mason/ui/components/help/init.lua b/lua/mason/ui/components/help/init.lua
index d61220ea..83e6c251 100644
--- a/lua/mason/ui/components/help/init.lua
+++ b/lua/mason/ui/components/help/init.lua
@@ -132,11 +132,11 @@ local function GenericHelp(state)
Ui.HlTextNode {
{
p.none "- ",
- p.highlight "https://github.com/williamboman/mason.nvim/blob/main/CONTRIBUTING.md",
+ p.highlight "https://github.com/mason-org/mason.nvim/blob/main/CONTRIBUTING.md",
},
{
p.none "- ",
- p.highlight "https://github.com/williamboman/mason.nvim/blob/main/doc/reference.md",
+ p.highlight "https://github.com/mason-org/mason.nvim/blob/main/doc/reference.md",
},
},
}),