Merge branch 'master' into 732_drop_selection_on_alt

This commit is contained in:
Daniel Imms
2017-06-29 12:13:10 -07:00
committed by GitHub
+1 -1
View File
@@ -234,7 +234,7 @@ export class SelectionManager extends EventEmitter {
// and joining the array into a multi-line string.
const formattedResult = result.map(line => {
return line.replace(ALL_NON_BREAKING_SPACE_REGEX, ' ');
}).join('\n');
}).join(Browser.isMSWindows ? '\r\n' : '\n');
return formattedResult;
}