summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-10-27refactor: replace openresty with LuaCATS submodulecarsakiller
2023-10-25update bee.net最萌小汐
#2382
2023-10-25update bee最萌小汐
2023-10-25update submodules最萌小汐
2023-10-25Merge pull request #2388 from CppCXY/master最萌小汐
fix linux compile issue
2023-10-25fix linux compile issueCppCXY
2023-10-24Revert "update submodules"最萌小汐
This reverts commit 2d4143cc1c5dd6a117264e0b6f4119b6f97b3d0b.
2023-10-24update bee.net最萌小汐
2023-10-24update socket mode最萌小汐
#2382
2023-10-24update submodules最萌小汐
2023-10-19Merge pull request #2383 from CppCXY/master最萌小汐
update format support UTF8-Latin-1 align
2023-10-19Merge pull request #2354 from 9999years/dont-ask-third-party最萌小汐
Make `workspace.checkThirdParty` a string enum
2023-10-19fix compile errorCppCXY
2023-10-19fix type formatCppCXY
2023-10-18Update `doc` and `locale`Rebecca Turner
2023-10-18Make `workspace.checkThirdParty` a string enumRebecca Turner
This lets you skip the "apply third party library to workspace configuration" prompt.
2023-10-18Merge pull request #2364 from 9999years/check-out-path最萌小汐
Add `--check_out_path` CLI argument
2023-10-11support `Lua Debug 2.0.0`最萌小汐
2023-10-11update doc and locale最萌小汐
2023-10-11update launch.json最萌小汐
2023-10-10Add `--check_out_path` CLI argumentRebecca Turner
This allows customizing where the diagnostic JSON file is saved.
2023-10-10update utility最萌小汐
2023-10-10Merge pull request #2287 from gpanders/editorconfig-end-of-line最萌小汐
Do not use off-spec value for end_of_line
2023-10-08update format for UTF8 latin-1CppCXY
2023-10-07pause diagnostic in tests最萌小汐
2023-09-26Merge pull request #2346 from lewis6991/feat/snipspace最萌小汐
feat: support param snippets with space
2023-09-25feat: support param snippets with spaceLewis Russell
Currently LuaLS will expand: ```lua ---<??> local x = function (x, y) end ``` with: ```lua ---comment ---@param x any ---@param y any local x = function (x, y) end ``` This change adds a variation of this snippet to expand: ```lua --- <??> local x = function (x, y) end ``` with: ```lua --- comment --- @param x any --- @param y any local x = function (x, y) end ```
2023-09-20Merge pull request #2338 from CppCXY/master最萌小汐
Update format
2023-09-20Merge branch 'master' of github.com:CppCXY/lua-language-server into HEADCppCXY
2023-09-20fix some bug, update optionsCppCXY
2023-09-20add `__close` to `setmetatable`最萌小汐
fix #2335
2023-09-08update whimsical最萌小汐
2023-08-31fix #2299最萌小汐
2023-08-31update bee.lua最萌小汐
2023-08-30update最萌小汐
2023-08-29Merge pull request #2291 from firas-assaad/fix-inject-field-message最萌小汐
Translate table injection diag and fix some issues
2023-08-26Translate table injection diag and fix some issuesFiras Assaad
2023-08-24fix wrong uri in test最萌小汐
2023-08-243.7.0最萌小汐
2023-08-24修复基础库定义最萌小汐
2023-08-23Do not use off-spec value for end_of_lineGregory Anders
The [EditorConfig specification](https://spec.editorconfig.org/#supported-pairs) does not support "auto" as a value for "end_of_line". EditorConfig implementations which adhere to the specification (such as Neovim) will either ignore this value or, worse, show a warning or error to the user. Simply omitting `end_of_line` will use the default end of line value for the platform. Git (and other source control tools) can handle translating end of line characters between Windows and Unix platforms. The `end_of_line` option is there _only_ when you want to maintain a strict end of line character *across* platforms.
2023-08-23add guide最萌小汐
2023-08-23support `---@class (exact)`最萌小汐
#1990
2023-08-22fix wrong `missing-fields` with union types最萌小汐
fix #2252
2023-08-22whimsical最萌小汐
2023-08-21fix最萌小汐
2023-08-16supports `---@enum (key)`最萌小汐
2023-08-15don't diagnose git uri最萌小汐
fix #2267
2023-08-15Merge pull request #2264 from flrgh/master最萌小汐
set min version for some math.* functions
2023-08-15Merge pull request #2263 from overhacked/ignore_cast-local-type_underscore最萌小汐
Ignore `cast-local-type` diagnostic for `_` local