Is there a way to flatten or merge single-folder folders in vs code explorer?

It looks like it is in the iteration plan for June, 2019. See Iteration plan for June, 2019: release in July, 2019 and issue: merging single child directories. Update: making it into v1.41 to be released in December, 2019. See https://github.com/microsoft/vscode-docs/blob/vnext/release-notes/v1_41.md#compact-folders-in-explorer Compact folders in Explorer In the File Explorer, we now render single child folders … Read more

Disable wavy underline in VS Code

To disable wavy/squiggly underline in vscode, go to preferences and set underline color to fully transparent: { “workbench.colorCustomizations”: { “editorError.foreground”: “#00000000”, “editorWarning.foreground”: “#00000000”, “editorInfo.foreground”: “#00000000” } } Though it may be better to make underline color just less vibrant: { “workbench.colorCustomizations”: { “editorError.foreground”: “#ff000088”, “editorWarning.foreground”: “#ffe60033”, “editorInfo.foreground”: “#00ff0088” } }

How can I install vscode-server in linux offline [duplicate]

First get commit id Download vscode server from url: https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable Upload the vscode-server-linux-x64.tar.gz to server Unzip the downloaded vscode-server-linux-x64.tar.gz to ~/.vscode-server/bin/${commit_id} without vscode-server-linux-x64 dir Create 0 file under ~/.vscode-server/bin/${commit_id} commit_id=f06011ac164ae4dc8e753a3fe7f9549844d15e35 # Download url is: https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable curl -sSL “https://update.code.visualstudio.com/commit:${commit_id}/server-linux-x64/stable” -o vscode-server-linux-x64.tar.gz mkdir -p ~/.vscode-server/bin/${commit_id} # assume that you upload vscode-server-linux-x64.tar.gz to /tmp dir tar zxvf /tmp/vscode-server-linux-x64.tar.gz … Read more