v4.2.0
- feat: git integration 64ed891 by @TIM-tech-dev
- feat(languages): add support for Terraform dfd4606 (fix #41)
- feat: button disabled by default 7406f77 (fix #28)
- feat: remove vscode workspace text (Workspace) 6a16742
- feat: add ability to set a text on ignored workspace instead of not start the entire extension d8db14b (fix #42)
- feat: add ansible language c87b77b by @MiguelNdeCarvalho
- feat: add missing Jinja file extension 4136e88 by @MiguelNdeCarvalho
- feat: allow multiple ignore workspaces texts de26f19
- feat: add ability to ignore repositories 82c7b3b (fix #42)
- feat: add ability to ignore organizations ccf2784 (fix #42)
- feat: add ability to remove the details & lower details 17efa3c (fix #30)
Ignore workspaces with custom text:
{
"rpc.ignoreWorkspaces": ["my_workspace", ...],
"rpc.ignoreWorkspacesText": {
// key must be match the item in ignoreWorkspaces
"my_workspace": "my_workspace_text",
...
},
// global text
"rpc.ignoreWorkspacesText": "my_global_workspace_text"
}
Ignore Repositories
{
"rpc.ignoreRepositories": ["my_repository"],
}
Ignore Organizations
{
// also works for owner
"rpc.ignoreOrganizations": ["my_organizations", "LeonardSSH"],
}