Skip to content

Commit

Permalink
Doc: Recommend excluding Yocto build directory parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
deribaucourt committed Dec 8, 2023
1 parent 7a0c650 commit 66ce04a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,31 @@ Here are some examples using the most popular bitbake wrappers:
{ "bitbake.commandWrapper": "${workspaceFolder}/build.sh --" }
```

### Additional settings recommendations

If your workspace contains a Yocto build directory, some other extensions may
be hogging lots of resources to parse it's contents and stall your machine. Here are
some example settings to improve your experience (assuming your build directory
is called `build`). You can add them to your `settings.json` file, or your global
user settings.

```json
{
"files.watcherExclude": {
"**/build/**": true
},
"search.exclude": {
"**/build/**": true
},
"C_Cpp.files.exclude": {
"**/build": true
},
"python.analysis.exclude": [
"**/build/**"
]
}
```

## Features

### Syntax highlighting
Expand Down

0 comments on commit 66ce04a

Please sign in to comment.