0

I'm using Git inside the VSCode terminal and it works. However, if I run git branch it opens the Vim editor, so that I need to run :wq to come back to the terminal!

Is this the normal behaviour or something is wrong with my VSCode settings?

Richard
  • 103,472
  • 21
  • 199
  • 258
user1941537
  • 4,891
  • 9
  • 43
  • 76

1 Answers1

0

What editor have you configured in git? Try running

git config core.editor

To see what you have set, for me the value is

code --wait -n
Richard
  • 103,472
  • 21
  • 199
  • 258