Closed
Description
From @dbaeumer on August 30, 2017 8:35
Testing: #33282
function foo() {
console.log('Hello World');
}
- observe: console.log is indented using tabs
- select
console.log('Hello World');
- run extract function
- you get
function foo() {
newFunction();
}
function newFunction() {
console.log('Hello World');
}
Observe: spaces are used as indentation.
Copied from original issue: microsoft/vscode#33492