Skip to content

Commit

Permalink
fixes(2261): fix regression. show search string in status bar
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon committed Jan 4, 2018
1 parent bd19227 commit 5d011ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mode/modeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ export class ModeHandler implements vscode.Disposable {
text.push(macroText);
}

StatusBar.SetText(text.join(' '), this.currentMode.name);
StatusBar.SetText(text.join(' '), this.currentMode.name, true);
}

async handleMultipleKeyEvents(keys: string[]): Promise<void> {
Expand Down

0 comments on commit 5d011ef

Please sign in to comment.