How to hide comment lines in the Visual Studio Code editor?

Issue

This Content is from Stack Overflow. Question asked by lalebarde

Sometimes, configuration files contain a lot of comment lines for options explanations and default values.

Is there a way to hide comment lines in the Visual Studio Code editor?

Actually a switch button would be nice, with automatic recognition of comment lines, depending on the file extension.

As a turn around, I have to open a terminal and filter the file with:

egrep -v -e "^[[:space:]]*$|^[[:space:]]*;.*$|^[[:space:]]*#.*$" some_file.conf



Solution

This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.

This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.

people found this article helpful. What about you?