How to save the cancellation history after saving in Visual Studio Code

I am using the latest version of VS code (1.9.0).

After I canceled (ctrl + z) something and saved the file (ctrl + s), I can no longer repeat (ctrl + y).

I would like to go back and forth when the editor works just like Sublime or another editor. Can anyone solve this problem? Thanks.

+5
source share
1 answer

Usually it should work. Perhaps this is a problem with one of your installed extensions. Try running Visual Studio Code in terminal / command line with

code --disable-extensions 

Credits: Release Note from Benjamin Pasero

+1
source

Source: https://habr.com/ru/post/1263772/


All Articles