
EmmyLua is a powerful Lua language support extension for Visual Studio Code, providing intelligent code completion, debugging, and analysis capabilities.
29850775Enhance your Lua development experience with these complementary extensions:
Create a .emmyrc.json file in your project root to customize behavior:
{
"diagnostics": {
"undefined-global": false
}
}
For detailed configuration options, see:
Insert Debugger Code
EmmyLua: Insert Emmy Debugger Codepackage.cpath = package.cpath .. ";path/to/emmy/debugger/?.dll"
local dbg = require('emmy_core')
dbg.tcpListen('localhost', 9966)
dbg.waitIDE()
Set Breakpoints
dbg.breakHere() where you want to pause executionStart Debugging
English: The debugger needs access to Lua symbols from the target process. Ensure your executable exports Lua symbols.
中文: 调试器需要获取进程中的 Lua 符号,因此需要进程导出 Lua 符号。
English: Create .emmyrc.json in your project root and disable the undefined-global diagnostic:
{
"diagnostics": {
"disable" : [
"undefined-global"
]
}
}
中文: 在项目根目录创建 .emmyrc.json 文件并禁用 undefined-global 诊断。
English: Yes! EmmyLua uses a standard Language Server Protocol implementation. Any LSP-compatible editor can use it.
中文: 可以!EmmyLua 基于标准的语言服务器协议,任何支持 LSP 的编辑器都可以使用。
English: Project-specific configuration files work across different editors and platforms without requiring IDE-specific setup.
中文: 项目配置文件可以跨平台和编辑器使用,无需在每个 IDE 中重复配置。
English: The Rust implementation provides better performance, memory safety, and cross-platform compatibility compared to the previous .NET and Java versions.
中文: Rust 实现提供了更好的性能、内存安全性和跨平台兼容性。(因为我想试试 rust 😄)
We welcome contributions! Please feel free to:
This project is licensed under the MIT License.
TypeScript
84.9%
JavaScript
9.3%
Lua
5.8%

EmmyLua is a powerful Lua language support extension for Visual Studio Code, providing intelligent code completion, debugging, and analysis capabilities.
29850775Enhance your Lua development experience with these complementary extensions:
Create a .emmyrc.json file in your project root to customize behavior:
{
"diagnostics": {
"undefined-global": false
}
}
For detailed configuration options, see:
Insert Debugger Code
EmmyLua: Insert Emmy Debugger Codepackage.cpath = package.cpath .. ";path/to/emmy/debugger/?.dll"
local dbg = require('emmy_core')
dbg.tcpListen('localhost', 9966)
dbg.waitIDE()
Set Breakpoints
dbg.breakHere() where you want to pause executionStart Debugging
English: The debugger needs access to Lua symbols from the target process. Ensure your executable exports Lua symbols.
中文: 调试器需要获取进程中的 Lua 符号,因此需要进程导出 Lua 符号。
English: Create .emmyrc.json in your project root and disable the undefined-global diagnostic:
{
"diagnostics": {
"disable" : [
"undefined-global"
]
}
}
中文: 在项目根目录创建 .emmyrc.json 文件并禁用 undefined-global 诊断。
English: Yes! EmmyLua uses a standard Language Server Protocol implementation. Any LSP-compatible editor can use it.
中文: 可以!EmmyLua 基于标准的语言服务器协议,任何支持 LSP 的编辑器都可以使用。
English: Project-specific configuration files work across different editors and platforms without requiring IDE-specific setup.
中文: 项目配置文件可以跨平台和编辑器使用,无需在每个 IDE 中重复配置。
English: The Rust implementation provides better performance, memory safety, and cross-platform compatibility compared to the previous .NET and Java versions.
中文: Rust 实现提供了更好的性能、内存安全性和跨平台兼容性。(因为我想试试 rust 😄)
We welcome contributions! Please feel free to:
This project is licensed under the MIT License.
TypeScript
84.9%
JavaScript
9.3%
Lua
5.8%