mikemaccana
mikemaccana

Reputation: 123670

What is the moving line at the top of vscode, and how can I get rid of it?

Recently VSCode is showing an animated line, that moves constantly from the left to the right. The movement is distracting when I am trying to code.

What is the line, and how can I disable it?

enter image description here

Upvotes: 2

Views: 692

Answers (1)

ChrisR
ChrisR

Reputation: 4008

This is because it's "loading" something in the background.

Display the Ouptut console shiftcmd/ctrlu (or: View > Output) and on the right, in a selectable list, check the different tasks or logs to see what process is still pending.

Sometimes it's a plugin which is stuck, or a wrong configuration of your project.

It could also simply be a bug in VSCode.

Upvotes: 1

Related Questions