LuaCoderAssist
LuaCoderAssist copied to clipboard
vscode lua assistant intelligent
英语毕竟没中文看着顺畅。 指向的链也可改成中文版的。 国内有几个长期提供中文文档的网站了。 比如这个 https://www.runoob.com/manual/lua53doc/
Bumps [eslint](https://github.com/eslint/eslint) from 3.19.0 to 4.18.2. Release notes *Sourced from [eslint's releases](https://github.com/eslint/eslint/releases).* > ## v4.18.2 > * 6b71fd0 Fix: [email protected], because 4.0.3 needs "ajv": "^6.0.1" ([#10022](https://github-redirect.dependabot.com/eslint/eslint/issues/10022)) (Mathieu Seiler) > *...
一个最小demo如下: ```lua local count=2 if (count > 1) then local prePrice = 200 -- print(prePrice) else print(count) end ``` 使用本插件格式化后,注释的那句print会与上面的"local prePrice = 200"交换位置,如果此时放开注释,就会出现"prePrice"为空的错误,严重影响调试,奇怪的是把else分支去掉后,就没有这个bug了
给定一段Lua函数代码,什么样的注释格式才可以在使用该函数时触发注释文档提示? 例如以下的求和函数: ``` lua function Sum(a, b) local sum = a + b return sum end ```
目前发现同时安装 luaide & luacoderassist 两个插件,编辑一个 lua文件会出现crash的问题。请帮忙看一下是什么问题?luaide的作者说是您这边插件出的问题。 
选中变量localval 按F2重命名 按Enter确认后,发现变量名字还是原来的 
文件加载优化建议
有些类似配置表、数据相关的文件,内容繁杂且没有加载的意义,而这个插件似乎除了大小限制全部一视同仁。往往在加载这些文件的时候出现严重的失效问题。 希望可以提供一个不加载符合某格式的文件,或者其他方案 只是每次一打开数据文件插件就失效一段时间影响体验了哈哈哈哈 【好像filter没有生效???】
The plugin automatically removes all ';' at the end of a command during automatic formatting. But I need this because the LUA code is compressed and at the end everything...
 当我想要检测到某个条件就跳过循环的时候出现这个报错
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...