Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-10-19 | fix type format | CppCXY | |
2023-10-18 | Update `doc` and `locale` | Rebecca Turner | |
2023-10-18 | Make `workspace.checkThirdParty` a string enum | Rebecca Turner | |
This lets you skip the "apply third party library to workspace configuration" prompt. | |||
2023-10-18 | Merge pull request #2364 from 9999years/check-out-path | 最萌小汐 | |
Add `--check_out_path` CLI argument | |||
2023-10-11 | support `Lua Debug 2.0.0` | 最萌小汐 | |
2023-10-11 | update doc and locale | 最萌小汐 | |
2023-10-11 | update launch.json | 最萌小汐 | |
2023-10-10 | Add `--check_out_path` CLI argument | Rebecca Turner | |
This allows customizing where the diagnostic JSON file is saved. | |||
2023-10-10 | update utility | 最萌小汐 | |
2023-10-10 | Merge pull request #2287 from gpanders/editorconfig-end-of-line | 最萌小汐 | |
Do not use off-spec value for end_of_line | |||
2023-10-08 | update format for UTF8 latin-1 | CppCXY | |
2023-10-07 | pause diagnostic in tests | 最萌小汐 | |
2023-09-26 | Merge pull request #2346 from lewis6991/feat/snipspace | 最萌小汐 | |
feat: support param snippets with space | |||
2023-09-25 | feat: support param snippets with space | Lewis 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-20 | Merge pull request #2338 from CppCXY/master | 最萌小汐 | |
Update format | |||
2023-09-20 | Merge branch 'master' of github.com:CppCXY/lua-language-server into HEAD | CppCXY | |
2023-09-20 | fix some bug, update options | CppCXY | |
2023-09-20 | add `__close` to `setmetatable` | 最萌小汐 | |
fix #2335 | |||
2023-09-08 | update whimsical | 最萌小汐 | |
2023-08-31 | fix #2299 | 最萌小汐 | |
2023-08-31 | update bee.lua | 最萌小汐 | |
2023-08-30 | update | 最萌小汐 | |
2023-08-29 | Merge pull request #2291 from firas-assaad/fix-inject-field-message | 最萌小汐 | |
Translate table injection diag and fix some issues | |||
2023-08-26 | Translate table injection diag and fix some issues | Firas Assaad | |
2023-08-24 | fix wrong uri in test | 最萌小汐 | |
2023-08-24 | 3.7.0 | 最萌小汐 | |
2023-08-24 | 修复基础库定义 | 最萌小汐 | |
2023-08-23 | Do not use off-spec value for end_of_line | Gregory 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-23 | add guide | 最萌小汐 | |
2023-08-23 | support `---@class (exact)` | 最萌小汐 | |
#1990 | |||
2023-08-22 | fix wrong `missing-fields` with union types | 最萌小汐 | |
fix #2252 | |||
2023-08-22 | whimsical | 最萌小汐 | |
2023-08-21 | fix | 最萌小汐 | |
2023-08-16 | supports `---@enum (key)` | 最萌小汐 | |
2023-08-15 | don't diagnose git uri | 最萌小汐 | |
fix #2267 | |||
2023-08-15 | Merge pull request #2264 from flrgh/master | 最萌小汐 | |
set min version for some math.* functions | |||
2023-08-15 | Merge pull request #2263 from overhacked/ignore_cast-local-type_underscore | 最萌小汐 | |
Ignore `cast-local-type` diagnostic for `_` local | |||
2023-08-14 | set min version for some math.* functions | Michael Martin | |
2023-08-14 | Ignore cast-local-type diagnostic for `_` local | Ross 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-14 | fix warning | 最萌小汐 | |
2023-08-14 | check `doc.field` | 最萌小汐 | |
#1990 | |||
2023-08-14 | also check `doc.type.table` | 最萌小汐 | |
2023-08-14 | new diag: `inject-field` | 最萌小汐 | |
#1990 | |||
2023-08-11 | stash | 最萌小汐 | |
2023-08-11 | commandline parameter `--force-accept-workspace` | 最萌小汐 | |
resolve #2159 | |||
2023-08-11 | fix stack overflow | 最萌小汐 | |
2023-08-11 | check nil | 最萌小汐 | |
2023-08-11 | local uses `nil` at least | 最萌小汐 | |
fix #2155 | |||
2023-08-11 | support `---@type` and `--[[@as]]` for return | 最萌小汐 | |
resolve #2144 | |||
2023-08-11 | cleanup tests | 最萌小汐 | |