summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2023-08-14set min version for some math.* functionsMichael Martin
2023-08-14Ignore cast-local-type diagnostic for `_` localRoss Williams
The `unused-local` diagnostic already hard-codes to exclude `_`. `cast-local-type` should also ignore `_` variables, to avoid warnings in, for example, nested loops like: ```lua for _, list in ipairs(lists) do for _, item in ipairs(list) do _, result = pcall(...) end end ```
2023-08-14fix warning最萌小汐
2023-08-14check `doc.field`最萌小汐
#1990
2023-08-14also check `doc.type.table`最萌小汐
2023-08-14new diag: `inject-field`最萌小汐
#1990
2023-08-11stash最萌小汐
2023-08-11commandline parameter `--force-accept-workspace`最萌小汐
resolve #2159
2023-08-11fix stack overflow最萌小汐
2023-08-11check nil最萌小汐
2023-08-11local uses `nil` at least最萌小汐
fix #2155
2023-08-11support `---@type` and `--[[@as]]` for return最萌小汐
resolve #2144
2023-08-11cleanup tests最萌小汐