Fix an annoying typo. (#65)
* Fix an annoying typo. * Update extension.ts
This commit is contained in:
parent
5e167a5f7f
commit
302a66a100
1 changed files with 1 additions and 1 deletions
|
@ -364,7 +364,7 @@ function getFileDetails(rawString): FileDetail {
|
|||
obj.currentColumn = (window.activeTextEditor.selection.active.character + 1).toLocaleString();
|
||||
}
|
||||
if (rawString.includes('{filesize}')) {
|
||||
const sizes = ['bytes', 'kb', 'mb', 'gb', 'tb'];
|
||||
const sizes = [' bytes', 'kb', 'mb', 'gb', 'tb'];
|
||||
let currentDivision = 0;
|
||||
let { size } = statSync(window.activeTextEditor.document.fileName);
|
||||
const originalSize = size;
|
||||
|
|
Loading…
Reference in a new issue