erg/crates/els/doc/code_action.md
2023-02-11 14:49:28 +09:00

347 B

Available Code Actions

eliminate_unused_vars

This code action will eliminate unused variables in code.

foo = 1
for! 0..3, i =>
    print! 1

for! 0..3, _ =>
    print! 1

change_case

This code action will change non-snake case variables to snake case.

fooBar = 1

foo_bar = 1