You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let me explain a little bit why this happens. cmd+s is not changing the mode to Insert while it changes the cursor style from block to line. The reason it happens is cmd+s triggers document save, which triggers another view update of VS Code. When the view updates, it will read configuration from settings.json as latest Code will persist all changes to Code's configuration through API and it always reads config from the file. Since we are not merging #913 yet, we don't save the change to cursor style to settings.json, so Code thinks the cursor style is line instead of block.
Technical details:
The text was updated successfully, but these errors were encountered: