Krzysztof Morcinek
Krzysztof Morcinek

Reputation: 1021

VsVim does not keep macro after Visual Studio restart

When I enter a macro and run it, it works fine. Unfortunately after I restart Visual Studio all macros are gone. How to prevent it?

Upvotes: 1

Views: 214

Answers (1)

JaredPar
JaredPar

Reputation: 754585

Other vim implementations, like gVim, preserve register values across restarts. Macros are stored as register values hence they get persisted as well. That feature though hasn't been implemented in VsVim yet.

This bug is tracking that: https://github.com/jaredpar/VsVim/issues/1726

Upvotes: 2

Related Questions