vscode-wow-api icon indicating copy to clipboard operation
vscode-wow-api copied to clipboard

WoW extension for VSCode

Results 14 vscode-wow-api issues
Sort by recently updated
recently updated
newest added

https://warcraft.wiki.gg/wiki/API_EditMacro ``` EditMacro(macroName, macroName, "INV_Misc_QuestionMark", fullMacroCommand) ``` ``` Cannot assign `string` to parameter `number?`. - `string` cannot match `number?` - Type `string` cannot match `nil` - Type `string` cannot match...

I am a long-time user of Intellij IDEA with the EmmyLUA plugin, and after maintaining my own API docs for many years, [here](https://github.com/Ellypse/IntelliJ-IDEA-Lua-IDE-WoW-API/), I have now been using this project...

documentation
enhancement

I used to maintain a similar project for IntelliJ's EmmyLUA plugin [here](https://github.com/Ellypse/IntelliJ-IDEA-Lua-IDE-WoW-API), but have begin using yours full-time as it is far superior to what I was able to accomplish...

EmmyLua

The recommended way to setup a config for LuaLS is to use the file `.luarc.json` because it is not specific to VS Code, see https://luals.github.io/wiki/configuration/ Your code to automatically add...

bug
LuaLS

I would like to have an Enum for the combat log sub-events, the list of events is available in Blizzard_CombatLog.lua. I tried to add it myself but I couldn't quite...

I have code like this: ``` frame = CreateFrame("Frame", nil, UIParent, "BackdropTemplate") (...) frame:ApplyBackdrop() frame:Show() ``` The definition for CreateFrame makes Frame of type `BackdropTemplate|Frame` which means it triggers `param-type-mismatch`...

https://github.com/Ketho/vscode-wow-api/blob/98df833d58aa86ef96b06e85755e10880a8476aa/EmmyLua/API/GlobalAPI/API3.lua#L603-L640 These and others sound like they return numbers

I'm not sure what to edit on the [Wiki page](https://wowpedia.fandom.com/wiki/API_ScriptRegion_IsMouseOver) to correct the definition in the extension, but there are two problems: - The type definition in the extension requires...

In 5.1 xpcall has 2 arguments, optionals were added in 5.2 WoW use 5.2 xpcall, i don't know if something can be done about it with vscode-wow-api

EmmyLua

Thanks for this amazing extension, it makes addon development so much easier. Is there some way to handle the typing of Frame templates such as BackdropTemplate that I'm missing, or...

enhancement