Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lsp-lua: modify the organization of lua-language-server #4565

Merged
merged 1 commit into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/lsp-lua.el
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"Lua LSP client, provided by the Lua Language Server."
:group 'lsp-mode
:version "8.0.0"
:link '(url-link "https://github.com/sumneko/lua-language-server"))
:link '(url-link "https://github.com/LuaLS/lua-language-server"))

(defcustom lsp-clients-lua-language-server-install-dir (f-join lsp-server-install-dir "lua-language-server/")
"Installation directory for Lua Language Server."
Expand Down Expand Up @@ -547,7 +547,7 @@ and `../lib` ,exclude `../lib/temp`.
(funcall callback))
error-callback
:url (lsp--find-latest-gh-release-url
"https://api.github.com/repos/sumneko/lua-language-server/releases/latest"
"https://api.github.com/repos/LuaLS/lua-language-server/releases/latest"
(format "%s%s.tar.gz"
(pcase system-type
('gnu/linux
Expand Down
4 changes: 2 additions & 2 deletions docs/lsp-clients.json
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,8 @@
"common-group-name": "lua",
"full-name": "Lua",
"server-name": "lua-language-server",
"installation-url": "https://github.com/sumneko/lua-language-server/wiki/Build-and-Run-(Standalone)",
"server-url": "https://github.com/sumneko/lua-language-server",
"installation-url": "https://github.com/LuaLS/lua-language-server/wiki/Getting-Started#build",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The page of Build-and-Run-(Standalone) was not found now.
I think the Getting-Started#build page is the closest to the above page in content

"server-url": "https://github.com/LuaLS/lua-language-server",
"debugger": "Not available"
},
{
Expand Down
Loading