-
Notifications
You must be signed in to change notification settings - Fork 85
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I'm not sure what option I need to change or if it's a missing feature but the arguments passed to a function call are being placed relative to the function call's opening ( bracket and not the statement.
For example, after formatting I get this:
function Module:DeleteProfile(profileName)
local popupMessage = string.format(
L["Are you sure you want to delete profile '%s'?"],
profileName);
-- other code removed for brevity
endHowever, I'd prefer this:
function Module:DeleteProfile(profileName)
local popupMessage = string.format(
L["Are you sure you want to delete profile '%s'?"],
profileName);
-- other code removed for brevity
endI have the indentation set to 2 spaces. I'd prefer those 2 indented spaces to be relative to the statematement. Does this make sense? Is this possible?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request