Terminal integration when using VSCode from Flatpak #653
Replies: 1 comment 1 reply
-
I've taken a slightly different approach to configuring the terminal integration, and it all appears to work now. Remove the original customisations, and just drop in this one. "terminal.integrated.env.linux": {
"SHELL": "/app/bin/host-spawn"
}, |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using VSCode from a Flatpak. To get my terminal to work with my normal environment I use
host-spawn
:This all works well for my interactive sessions.
However, I believe this is why I get the Command Execution Warning Your command is being executed without VSCode terminal shell integration. warning.
So far all I've tried is adding
[[ "$TERM_PROGRAM" == "vscode" ]] && . "$(code --locate-shell-integration-path bash)"
to my~/.bashrc
without success, and I don't feel like I have a deep enough understanding of how Kilo or the terminal integration works to proceed in a meaningful way.Has anyone had success with this configuration?
Beta Was this translation helpful? Give feedback.
All reactions