Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flathub/com.visualstudio.code
https://github.com/flathub/com.visualstudio.code
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flathub/com.visualstudio.code
- Owner: flathub
- Created: 2017-11-21T01:42:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T20:11:39.000Z (15 days ago)
- Last Synced: 2024-12-13T23:09:10.805Z (13 days ago)
- Language: Shell
- Homepage: https://flathub.org/apps/details/com.visualstudio.code
- Size: 522 KB
- Stars: 153
- Watchers: 7
- Forks: 72
- Open Issues: 126
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Visual Studio Code Flatpak
🚨 Warning: This is an unofficial Flatpak build of Visual Studio Code, generated from the official Microsoft-built .deb packages [here](https://github.com/flathub/com.visualstudio.code/blob/master/com.visualstudio.code.yaml#L103).
## Table of Contents
- [Usage](#usage)
- [Execute commands in the host system.](#execute-commands-in-the-host-system)
- [Use host shell in the integrated terminal.](#use-host-shell-in-the-integrated-terminal)
- [Support for language extension.](#support-for-language-extension)
- [Support](#support)## Usage
Most functionality works out of the box, though please note that flatpak runs in an isolated environment and some work is necessary to enable those features.
### Execute commands in the host system.
To execute commands on the host system, run inside the sandbox:
`$ flatpak-spawn --host `
or
`$ host-spawn `
- Most users seem to report a better experience with `host-spawn`
### Use host shell in the integrated terminal.
Another option to execute commands is to use your host shell in the integrated terminal instead of the sandbox one.
For that go to `File -> Preferences -> Settings` and find `Features > Terminal > Integrated > Profiles`, then click on `Edit in settings.json` (The important thing here is to open settings.json)
And make sure that you have the following lines there:
`flatpak-spawn --host`
```
{
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/usr/bin/flatpak-spawn",
"args": ["--host", "--env=TERM=xterm-256color", "bash"],
"icon": "terminal-bash",
"overrideName": true
}
}
}
````host-spawn`
```
{
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "/app/bin/host-spawn",
"args": ["bash"],
"icon": "terminal-bash",
"overrideName": true
}
}
}
```- You can change **bash** to any terminal you are using: zsh, fish, sh.
- `overrideName` allows for the 'name' (or whatever you set it to) of the shell you're using to appear (e.g. normally zsh, fish, sh).### Support for language extension.
Some Visual Studio extension depends on packages that might exist on your host, but they are not accessible thought Flatpak. Like support to programming languages: gcc, python, etc..
**See available SDK:**
```
$ flatpak run --command=sh com.visualstudio.code
$ ls /usr/bin (shared runtime)
$ ls /app/bin (bundled with this flatpak)
```**Getting support for additional languages, you have to install SDK extensions, e.g.**
```
$ flatpak install flathub org.freedesktop.Sdk.Extension.dotnet
$ flatpak install flathub org.freedesktop.Sdk.Extension.golang
$ FLATPAK_ENABLE_SDK_EXT=dotnet,golang flatpak run com.visualstudio.code
```**Finding other SDK**
`flatpak search `
## Support
Please open issues under: https://github.com/flathub/com.visualstudio.code/issues