Skip to content

Commit 8415827

Browse files
committed
Fix status bar text for recording macro
"recording" should be lowercase and the capitalization of `qM` should be reflected
1 parent 4be9c81 commit 8415827

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/statusBar.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,7 @@ class StatusBarImpl implements vscode.Disposable {
113113
}
114114

115115
if (vimState.macro) {
116-
const macroText = 'Recording @' + vimState.macro.registerName;
117-
text.push(macroText);
116+
text.push('recording @' + vimState.macro.registerKey);
118117
}
119118

120119
StatusBar.setText(vimState, text.join(' '));

0 commit comments

Comments
 (0)