Vim
Vim copied to clipboard
fixes #8975 The literal string "<leader>" is substituted for the leader key when repeating a command-line command
What this PR does / why we need it:
fixes #8975 The literal string "
Which issue(s) this PR fixes
#8975
Special notes for your reviewer:
The commandList here saves the ex command, which typically do not include leader.
https://github.com/VSCodeVim/Vim/blob/5365305330a69288f38acfd12ae85cba7a593fa6/src/state/recordedState.ts#L58-L59
Therefore, we do not need the following replace
https://github.com/VSCodeVim/Vim/blob/5365305330a69288f38acfd12ae85cba7a593fa6/src/state/recordedState.ts#L62-L64