Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>pad-your-argsNew to Visual Studio Code? Get it now.
pad-your-args

pad-your-args

benjaminporter

|
221 installs
| (0) | Free
A vscode extension that will highlight unpadded parentheses in Lua.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

pad-your-args

A vscode extension that will highlight unpadded parentheses in Lua.

local mieou = function ( x, y ) end -- :)
local woof = function (x, y) end    -- :(
local baa = meiou( 3, 4 );          -- :)
local moo = woof(3, 4);             -- :(

Find it on the Visual Studio Code Marketplace.

Consider making the highlight stand out more by adding this to your vscode settings:

"editor.tokenColorCustomizations": {
    "textMateRules": [{
        "scope": "invalid.illegal",
        "settings": {
            "foreground": "#FF0000",
            "fontStyle": "bold underline",
        }
    }]
}
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft