Fix tree command in tree context _setting_.json

- Update tree command to properly exclude __pycache__ and .pytest_cache directories.
This commit is contained in:
bobo.yang 2023-06-09 10:46:44 +08:00
parent f510d1de62
commit ad9ec2291c

View File

@ -2,5 +2,5 @@
"name": "tree",
"description": "Directory structure of workspace",
"edit": true,
"command": ["tree -I __pycache__|\\.pytest_cache"]
"command": ["tree -I \"__pycache__|\\.pytest_cache\""]
}