Skip to content

(ON HOLD) [Feature request] Replace "else if" with "elif" #2

@knocte

Description

@knocte

Test1:

if foo then
    ()
else if bar then
    ()

should become:

if foo then
    ()
elif bar then
    ()

Test2:

if foo then
    ()
else
    if bar then
        ()
    else
        ()

should become (same):

if foo then
    ()
else
    if bar then
        ()
    else
        ()

(should not change)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions