-
-
Notifications
You must be signed in to change notification settings - Fork 126
workspaces
Marc Espín Sanz edited this page Jul 4, 2020
·
2 revisions
Graviton's workspaces are a way to organize some folders in a unic group, you can also configure unique settings for this workspace, like font's size, app's theme, etc.
- Open a folder
- Add more folders ( File > Workspaces > Add Folder to Workspace )
- Create the workspace ( File > Workspaces > Save Workspace). If it's the first time it will prompt you to select a location and then a name for it.
From the Welcome window go under the "Workspaces" section and there you have your configured workspaces.
By right-clicking on them you can rename or remove them from the registry.
Graviton's workspaces are basically JSON files.
Example:
{
"name": "My workspace",
"folders": [
{
"name": "Folder1",
"path": "/location/folder1"
},
{
"name": "Folder2",
"path": "/location/folder2"
},
]
}
To add custom settings we only need to add a new property named settings and inside add our custom settings.
Example:
{
"name": "My workspace",
"folders": [
{
"name": "Folder1",
"path": "/location/folder1"
},
{
"name": "Folder2",
"path": "/location/folder2"
},
],
"settings":{
"appTheme":"Arctic",
"editorFontSize": 14
}
}
This settings will only be applied when the workspace is opened
Documentation
Tutorials
Contributing
About