vscode-gitflow icon indicating copy to clipboard operation
vscode-gitflow copied to clipboard

Suggest other way to write some code

Open md2perpe opened this issue 7 years ago • 0 comments

Instead of

const commands = [
    ...
];
disposables.push(...commands);

one can simply use

disposables.push(
    ...
);

md2perpe avatar May 05 '18 21:05 md2perpe