I want to hide these indent lines in Terminal but I don't want to hide them in Editor section.
Thank you for suggestion.
Related
How to hide the whole top bar?
I cannot find online how to hide/show it.
The top bar is called Command Center. To hide it:
Open VS Code settings with Ctrl+, (or ⌘+, for MacOS)
Search for "Window: Command Center" and turn the settings off
When I use tab space in VSCode it remains a vertical line for each tab as in picture below. How can I remove them?
The Editor > Guides: Indentation setting controls whether or not those lines are rendered. Just uncheck that box and you should stop seeing them.
It's the bottom box in this image
Update based on comments: I don't think the editor can selectively render some indent guides while hiding the rest, all 'TAB SPACES' before text count as indentation to it. If you're only doing this with comments for some visual reason, you can simply start the comment early and put the spaces later like so:
Before:
After:
VS Code has options to hide/show indent guides. Steps to configure are as below.
Open VS Code Settings [ Cmd + Shift + P / Ctrl + Shift + P ]
Search for 'settings' and select Preferences: Open Workspace Settings
Now in settings, search for 'editor>guides'
Uncheck Editor > Guides: Indentation to remove guides.
You can also choose to hide or show Editor › Guides: Highlight Active Indentation
As you can see here there are no indent dots on my vscode although I have turned on render white space
Could it be one of my extensions messing with it?
Can someone help me turn on the dots that shows indentation like in the 3rd image?
You must add "editor.renderWhitespace": "all" parameter in your vscode settings.json file.
I have some troubles with my vscode settings. I have the following settings:
detect indentation: false
insert spaces: True
tab size: 4
But anytime I focus out of vscode it will automatically change to tabs as indents for my python code!
I have recorded it and uploaded it to youtube https://www.youtube.com/watch?v=2ddf3IP8zNY. Here you can see in the bottom right corner that tabs are choosen as indent. I changed them to spaces and go into settings to check that all settings are correct to have spaces as indent but as soon as i close settings it goes back to tabs!
What am I missing?
Try turning on Editor: Detect Indentation
I'm still not 100% sure what you're trying to solve here.
Is there a way to enable line numbers in zen mode for VSCode ?
In your settings.json insert the line:
"zenMode.hideLineNumbers": false
HaaLeo's answer above gets the job done but it's far easier to do it through the UI.
ctrl + , to bring up the Settings page, type "Zen Mode" in the search bar and disable the "Zen Mode: Hide Line Numbers" option.