### Configuring VS Code Lua Workspace Library Source: https://github.com/enderneko/abstractframework/blob/main/README.md This JSON snippet configures the Lua extension in VS Code to include the AbstractFramework directory in the workspace library. It uses the `AF_HOME` environment variable to locate the framework, enabling proper autocompletion and linting for Lua development. ```json "Lua.workspace.library": [ "${env:AF_HOME}" ] ``` -------------------------------- ### Declaring AbstractFramework Type in Lua Source: https://github.com/enderneko/abstractframework/blob/main/README.md This Lua snippet declares the `AF` local variable as an `AbstractFramework` type using a LuaDoc annotation. This provides type hinting for the `_G.AbstractFramework` global, improving code completion and static analysis within Lua development environments like VS Code. ```lua ---@type AbstractFramework local AF = _G.AbstractFramework ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.