Skip to content

A vscode extension that will highlight unpadded parentheses in Lua.

Notifications You must be signed in to change notification settings

eigenbom/pad-your-args

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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",
        }
    }]
}

About

A vscode extension that will highlight unpadded parentheses in Lua.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published