Split variable declaration sequence
Convert declarations with multiple variables into separate declarations for each variable.

Convert variable declarations with multiple variables into separate declarations that declare one variable each.
For example,
let a = 2, b;
is converted into
let a = 2;
let b;
Configuration
- Code Assist ID (for the configuration file):
split-variable-declaration
- You can configure custom keyboard shortcuts with this code action kind:
refactor.p42.split-variable-declaration
- This code assist provides refactoring suggestions. Learn how to configure the refactoring suggestion visibility.
Related Code Assists
- Convert var to let or const
- Split variable declaration and initialization
- Merge variable declaration and initialization