VSCode: Hide Folder Containing Brackets

Eric Siemiatkaska

How can I hide a folder containing brackets in its name from my workspace in VSCode? I have tried the following, along with several attempts to escape the brackets, but nothing works. Is this even possible?

"settings": {
    "files.exclude": {
        "[ IsoRoot ]": true
    }
}
Phillip S

[] is special glob syntax to match any one of a list of characters between the braces so if you would like to match a brace:

left brace: [[]

right brace: []]

"[ IsoRoot ]": "[[] IsoRoot []]"

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Hide folder in Brackets

From Dev

Perl regex not containing round brackets

From Dev

Regular expression for strings not containing brackets

From Dev

Ignore containing folder, but not a folder within

From Java

VSCode keybinding to hide Explorer

From Dev

Abobe Brackets how to find in a folder

From Dev

Getting name of containing Folder

From Dev

Install VSCode in a specific folder

From Dev

Change .vscode folder location

From Dev

vscode cd to workspace folder

From Dev

Odd property declaration syntax containing angular brackets <>

From Dev

DataTables column data property containing brackets

From Dev

validate input with name containing brackets in AngularJS

From Dev

Update and check if the substring containing brackets is correct

From Dev

Replace text containing brackets and quote entity in MariaDB

From Dev

Executing powershell in a working directory containing angle brackets

From Dev

Problem with passing path containing spaces and brackets

From Dev

Move files containing Brackets and Year eg (1999)

From Dev

How to replace a string containing sqare brackets in javascript?

From Dev

Hide a div containing a broken image

From Dev

Hide Angular brackets until javascript loaded

From Dev

Hide content inside brackets using pure JavaScript

From Dev

How to hide the brackets and hypens in jquery mask on focus

From Dev

linux cd to folder containing the file

From Dev

sublime text : open containing folder

From Dev

Open containing folder of recent document

From Dev

Remove or hide desktop folder in ~ (Xubuntu)

From Dev

Remove or hide desktop folder in ~ (Xubuntu)

From Dev

hide folder using .htaccess with subfolders

Related Related

HotTag

Archive