How do I stop vs code terminal from opening while writing code
Asked Answered
B

6

15

I installed live sass compiler in vs code. No matter what I write inside scss file, the terminal keeps opening (watch the attached video for better understanding of the problem) Please suggest a way of running the compiler in background "SILENTLY".. Ah looks like I cannot add video here so I'm adding an image

enter image description here

Bedfast answered 22/5, 2021 at 9:10 Comment(1)
you meant to say that your terminal is frequently opening while your coding in your vs code?Benue
H
28

settings > extensions > live sass compiler > show output window on

Set the setting to warning or error. You could also use none if you want.

enter image description here

Holeandcorner answered 11/10, 2021 at 6:54 Comment(0)
G
3

In the case of Sass live compiler vscode extension

  1. Open Preferences -> Settings
  2. Search Sass live compiler extension from the left column under Extensions category.
  3. Then search Settings: Show Output Window On setting and set it to none from the dropdown. It will fix your problem.
Gallion answered 19/9, 2022 at 7:59 Comment(0)
E
0

if you meant to say that your terminal is frequently opening while your coding in your vs code because of live server

install nodejs and npm install -g live-server

then open the windows terminal and cd into the directory of your project files and then type live-server and hit enter

ik this is not the best answer and there might be a setting on vscode that can help you but this should work too

Exorable answered 22/5, 2021 at 10:16 Comment(0)
S
0

That is not the terminal, that is the output window, it displays all the extensions and their live logs. See picture. You cannot disable the outputs of the extensions unless you uninstall that specific extension.

enter image description here

If you don't want constant parsing results select a different window like problems or the actual terminal

enter image description here

Sadi answered 22/5, 2021 at 11:14 Comment(0)
B
0

Actually this was output window which kept opening to log the errors. My problem was solved by unchecking an option which (I am not sure) was under SAAS settings (dont remember exactly and also cant find again but somehow it got solved >>> Sorry I have low memory :)

Bedfast answered 22/5, 2021 at 11:22 Comment(0)
V
0

You can use this instruction:

"liveSassCompile.settings.showOutputWindowOn": "None"

Just copy it to settings.json file of your Extension Live SASS compiler

Viand answered 20/1, 2023 at 19:44 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.