Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

10,165

Downloads of v 3.8.0:

31

Last Update:

22 Apr 2024

Package Maintainer(s):

Software Author(s):

  • 孙 颐久 & LuaLS Contributors

Tags:

lua-language-server oss lua language-server lpeg lsp lsp-server lpeglabel luajit foss

Lua Language Server

  • 1
  • 2
  • 3

3.8.0 | Updated: 22 Apr 2024

Downloads:

10,165

Downloads of v 3.8.0:

31

Maintainer(s):

Software Author(s):

  • 孙 颐久 & LuaLS Contributors

Lua Language Server 3.8.0

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Lua Language Server, run the following command from the command line or from PowerShell:

>

To upgrade Lua Language Server, run the following command from the command line or from PowerShell:

>

To uninstall Lua Language Server, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade lua-language-server -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade lua-language-server -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install lua-language-server
  win_chocolatey:
    name: lua-language-server
    version: '3.8.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'lua-language-server' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '3.8.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller lua-language-server
{
    Name     = "lua-language-server"
    Version  = "3.8.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'lua-language-server':
  ensure   => '3.8.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 22 Apr 2024.

Description

build
version
installs
downloads

Lua development just got a whole lot better 🧠

The Lua language server provides various language features for Lua to make development easier and faster. With around half a million installs on Visual Studio Code, it is the most popular extension for Lua language support.

Features

  • Changelog
  • Wiki
  • FAQ
  • [Report an issue][https://github.com/LuaLS/lua-language-server/issues]
  • [Suggest a feature][https://github.com/LuaLS/lua-language-server/issues]
  • Discuss

Available Languages

  • en-us 🇺🇸
  • zh-cn 🇨🇳
  • zh-tw 🇹🇼
  • pt-br 🇧🇷

> Note
> All translations are provided and collaborated on by the community. If you find an inappropriate or harmful translation, please report it immediately.

Are you able to provide a translation? It would be greatly appreciated!

Thank you to all contributors of translations!

Contributors

GitHub Contributors Image

Credit

Software that the language server (or the development of it) uses:


legal\LICENSE.txt
From: https://github.com/LuaLS/lua-language-server/blob/3.8.0/LICENSE

LICENSE

MIT License

Copyright (c) 2018 最萌小汐

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
legal\VERIFICATION.txt
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Package can be verified like this:

1. Go to https://github.com/LuaLS/lua-language-server/releases/tag/3.8.0, and download from there.

   i686: https://github.com/LuaLS/lua-language-server/releases/download/3.8.0/lua-language-server-3.8.0-win32-ia32.zip
   x86_64: https://github.com/LuaLS/lua-language-server/releases/download/3.8.0/lua-language-server-3.8.0-win32-x64.zip

   to download the ZIP archive and extract the executables. You may wish to rename one of the files.

2. You can use one of the following methods to obtain the SHA512 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum-i686:   f10c7d4676ad0d8aea80dcb773849faae73f975378dc0f825580af053e05b1783ed1692586bf09a6e52789af88da290289b52407ac63858dbf497a9af1e46fe4
   checksum-x86_64: 212f241a68ede2837d1bf64868e654d554f86fb9c2f13e09c5f0fca18191e14c50b071d822022ad0be078792bf0e2e0998e853b455a7bf63b2beae669ea44172

File 'LICENSE.txt' obtained from:
   https://github.com/LuaLS/lua-language-server/blob/3.8.0/LICENSE
tools\chocolateyinstall.ps1
$PackageName    = "lua-language-server";
$ToolsPath      = Split-Path -Parent $MyInvocation.MyCommand.Definition;
$ArchWidth      = Get-OSArchitectureWidth;

if ($ArchWidth -eq 64) {
	$PackageArgs = @{
		PackageName    = $PackageName
		FileFullPath64 = Get-Item $(Join-Path $(Join-Path $ToolsPath "x64") "lua-language-server-3.8.0-win32-x64.zip")
		Destination    = Join-Path $ToolsPath "x64"
	};
	mkdir $(Join-Path $(Join-Path $ToolsPath "x64") "log");
} else {
	$PackageArgs = @{
		PackageName    = $PackageName
		FileFullPath   = Get-Item $(Join-Path $(Join-Path $ToolsPath "x86") "lua-language-server-3.8.0-win32-ia32.zip")
		Destination    = Join-Path $ToolsPath "x86"
	};
	mkdir $(Join-Path $(Join-Path $ToolsPath "x86") "log");
};

Get-ChocolateyUnzip @PackageArgs;
Remove-Item ($ToolsPath + '\*.' + 'zip');
tools\x64\lua-language-server-3.8.0-win32-x64.zip
md5: 4C7FF43CD5A53D9C6D3F9A309640733C | sha1: 20F50DE00900AC87795903EF883B0540FA35728F | sha256: 300CA1A166702039AE06233680017036BF887910182BE869C96AC02010BBDF11 | sha512: 212F241A68EDE2837D1BF64868E654D554F86FB9C2F13E09C5F0FCA18191E14C50B071D822022AD0BE078792BF0E2E0998E853B455A7BF63B2BEAE669EA44172
tools\x86\lua-language-server-3.8.0-win32-ia32.zip
md5: 32D7CD9E80525005E9BC513CF37E4011 | sha1: 7CD45B114D7C0BE5CA3D80CD8032529749219630 | sha256: 3591FBD7C56D35C8CF6DFB048FF1F7DC700DB4475DF7C4F4D2D937BBA05FF4A6 | sha512: F10C7D4676AD0D8AEA80DCB773849FAAE73F975378DC0F825580AF053E05B1783ED1692586BF09A6E52789AF88DA290289B52407AC63858DBF497A9AF1E46FE4

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Lua Language Server 3.7.4 244 Sunday, January 7, 2024 Approved
Lua Language Server 3.7.3 95 Saturday, November 25, 2023 Approved
Lua Language Server 3.7.2 52 Sunday, November 12, 2023 Approved
Lua Language Server 3.7.1 32 Saturday, November 11, 2023 Approved
Lua Language Server 3.6.25 26 Friday, November 10, 2023 Approved
Lua Language Server 3.6.24 28 Thursday, November 9, 2023 Approved
Lua Language Server 3.6.23 31 Tuesday, November 7, 2023 Approved
Lua Language Server 3.6.22 24 Monday, November 6, 2023 Approved
Lua Language Server 3.6.21 22 Sunday, November 5, 2023 Approved
Lua Language Server 3.6.20 32 Saturday, November 4, 2023 Approved
Lua Language Server 3.6.19 28 Wednesday, November 1, 2023 Approved
Lua Language Server 3.6.18 28 Tuesday, October 31, 2023 Approved
Lua Language Server 3.6.17 38 Monday, October 23, 2023 Approved
Lua Language Server 3.6.14 38 Sunday, October 22, 2023 Approved
Lua Language Server 3.6.13 31 Saturday, October 21, 2023 Approved
Lua Language Server 3.6.12 28 Friday, October 20, 2023 Approved
Lua Language Server 3.6.11 329 Friday, October 20, 2023 Approved
Lua Language Server 3.6.10 53 Friday, October 13, 2023 Approved
Lua Language Server 3.6.9 30 Friday, October 13, 2023 Approved
Lua Language Server 3.6.8 35 Friday, October 13, 2023 Approved
Lua Language Server 3.6.7 47 Wednesday, October 11, 2023 Approved
Lua Language Server 3.6.6 31 Wednesday, October 11, 2023 Approved
Lua Language Server 3.6.5 37 Wednesday, October 11, 2023 Approved
Lua Language Server 3.6.4 46 Sunday, October 8, 2023 Approved
Lua Language Server 3.6.3 28 Sunday, October 8, 2023 Approved
Lua Language Server 3.6.2 718 Friday, October 6, 2023 Approved
Lua Language Server 3.6.1 48 Thursday, October 5, 2023 Approved
Lua Language Server 3.6.0 23 Tuesday, October 3, 2023 Approved
Lua Language Server 3.5.6 34 Monday, October 2, 2023 Approved
Lua Language Server 3.5.5 494 Saturday, September 30, 2023 Approved
Lua Language Server 3.5.4 546 Friday, September 29, 2023 Approved
Lua Language Server 3.5.3 576 Thursday, September 28, 2023 Approved
Lua Language Server 3.5.2 1089 Tuesday, September 26, 2023 Approved
Lua Language Server 3.5.1 859 Monday, September 25, 2023 Approved
Lua Language Server 3.5.0 189 Sunday, September 24, 2023 Approved
Lua Language Server 3.4.2 804 Saturday, September 23, 2023 Approved
Lua Language Server 3.4.1 864 Friday, September 22, 2023 Approved
Lua Language Server 3.4.0 413 Monday, September 18, 2023 Approved
Lua Language Server 3.3.1 121 Monday, September 18, 2023 Approved
Lua Language Server 3.3.0 360 Saturday, September 16, 2023 Approved
Lua Language Server 3.2.5 765 Friday, September 15, 2023 Approved
Lua Language Server 3.2.4 33 Wednesday, September 13, 2023 Approved
Lua Language Server 3.2.3 24 Tuesday, September 12, 2023 Approved
Lua Language Server 3.2.2 25 Monday, September 11, 2023 Approved
Lua Language Server 3.2.1 29 Friday, September 8, 2023 Approved
Lua Language Server 3.2.0 26 Thursday, September 7, 2023 Approved
Lua Language Server 3.1.0 26 Thursday, September 7, 2023 Approved
Lua Language Server 3.0.2 40 Monday, September 4, 2023 Approved
Lua Language Server 3.0.1 39 Sunday, September 3, 2023 Approved
Lua Language Server 3.0.0 33 Saturday, September 2, 2023 Approved
Lua Language Server 2.6.8 42 Friday, September 1, 2023 Approved
Lua Language Server 2.6.7 39 Friday, September 1, 2023 Approved
Lua Language Server 2.6.6 42 Thursday, August 31, 2023 Approved
Lua Language Server 2.6.5 42 Sunday, August 27, 2023 Approved
Lua Language Server 2.6.4 40 Friday, August 25, 2023 Approved
Lua Language Server 2.6.3 35 Thursday, August 24, 2023 Approved
Lua Language Server 2.6.2 44 Tuesday, August 22, 2023 Approved
Lua Language Server 2.6.1 32 Wednesday, August 16, 2023 Approved
Lua Language Server 2.6.0 63 Wednesday, August 2, 2023 Approved
Lua Language Server 2.5.6 39 Tuesday, August 1, 2023 Approved
Lua Language Server 2.5.5 38 Monday, July 31, 2023 Approved
Lua Language Server 2.5.4 87 Sunday, June 25, 2023 Approved

What's Changed

New Contributors

Full Changelog: https://github.com/LuaLS/lua-language-server/compare/3.7.4...3.8.0


This package has no dependencies.

Discussion for the Lua Language Server Package

Ground Rules:

  • This discussion is only about Lua Language Server and the Lua Language Server package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Lua Language Server, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus