Skip to content

Commit a5fbd6f

Browse files
committed
fixes #8975 The literal string "<leader>" is substituted for the leader key when repeating a command-line command
1 parent 5365305 commit a5fbd6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/state/recordedState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class RecordedState {
5656
this.commandList.length > 0
5757
) {
5858
// Used for the registers and macros that only record on commandList
59-
result = this.commandList.join('');
59+
return this.commandList.join('');
6060
}
6161

6262
return result

0 commit comments

Comments
 (0)