vscode-glua-enhanced
vscode-glua-enhanced copied to clipboard
Large comments cause hover for wiki to freak out.
https://drive.google.com/file/d/1c7spUlWb5oiZA7_UTKu9zbH96RdWkhkl/view Example code to trigger this bug.
if CLIENT then
--TODO SEPARATE INTO PANEL FILE!
--[[
]]
local PANEL = { }
function PANEL:Init( )
self:SetSize( ScrW( ) * 0.75, ScrH( ) * 0.80 )
self:Center( )
self:MakePopup( )
ix.gui.terminal = self
local w, h = self:GetSize( )
self.LeftPanel = self:Add( 'DPanel' )
self.LeftPanel:Dock( LEFT )
self.LeftPanel:SetWide( w * 0.20 )
self.LeftPanel:DockMargin(0,0,6,0)
self.RightPanel = self:Add( 'DPanel' )
self.RightPanel:Dock( FILL )
local pdl, pdt, pdr, pdb = self:GetDockPadding()
self:DockPadding(pdl + 1, pdt + 4, pdr + 1, pdb + 4)
end
end
just wanna say real quick this extension has been a real game changer for me and i barely have to look at the wiki now to lookup arguments and returns, bytecode heatmap has been helpful for micro-optimizing, too many useful things to note, best extension i have installed on vscode right now, next to comment anchors, thank you for coming to my ted talk