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
  • 106,783
  • 21
  • 203
  • 265
user1941537
  • 6,097
  • 14
  • 52
  • 99

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
  • 106,783
  • 21
  • 203
  • 265