Update commands.ts

This commit is contained in:
CalWooten95 2021-11-16 15:21:57 -06:00 committed by GitHub
parent 0dce1dde23
commit f59be64ab2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,19 +159,19 @@ function getIndent(): void {
let i = 0; let i = 0;
if(textLine.isEmptyOrWhitespace) if(textLine.isEmptyOrWhitespace)
{ {
vscode.window.showInformationMessage("Line number " + lineNum.toString() + " Is Empty") vscode.window.showInformationMessage("Line number " + lineNum.toString() + " Is Empty");
} }
else else
{ {
while(textLine.text[i] == '\t') while(textLine.text[i] === '\t')
{ {
i++; i++;
} }
vscode.window.showInformationMessage("Line Number " + lineNum.toString() + " Indentation " + i.toString()) vscode.window.showInformationMessage("Line Number " + lineNum.toString() + " Indentation " + i.toString());
} }
} }
else{ else{
vscode.window.showErrorMessage('No document currently active') vscode.window.showErrorMessage('No document currently active');
} }
} }