-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminus not showing text #439
Comments
Forgot to mention I'm on 4180 |
Found the debug and set it to true, ran
|
I have the same problem. I only see the output of commands, but nothing when I type, nor I see the shell prefix. |
It works in KDE, I also found if I launch it through the desktop file instead of the command |
Having the exact same issue. Sublime Text version 4180 Not sure which of the above are causing the issue, but I notice if I change Terminus setting and set the terminal to
{
// the default config, either a single config name or a platform
// specific dict
"default_config": {
"linux": "Bash", // login shell
"osx": null, // login shell
"windows": "Command Prompt"
},
// a list of available shells to execute
"shell_configs": [
{
"name": "Bash",
"cmd": ["sh"],
"env": {
"PS1": "\\[\\e[38;5;141m\\]\\u@\\h \\[\\e[38;5;247m\\]\\W\\[\\e[0m\\]\\$ "
},
"enable": true,
"platforms": ["linux", "osx"]
}
..... |
Apparently I can solve the problem if I remove the "shell_configs": [
{
"name": "Bash",
- "cmd": ["bash", "-i", "-l"],
+ "cmd": ["bash", "-i"],
"env": {},
"enable": true,
"platforms": ["linux", "osx"]
},
] |
I tried to do the same thing and still got the error. |
When opening Terminus, it doesn't show any text, but only in the Gnome DE. In KDE it works just fine.
I've found that when I do the
ctrl-l
keyboard shortcut, it does show the prompt but no stdout it looks like (but sometimes it does but drops the first line). The commands do run though, but I can only see what I type if I doctrl-l
first or if I backspace once.Also if I preface the command with any other command, I can get the full stdout (still no prompt unless I do
ctrl-l
though) e.g.echo; ls
shows the output ofls
Screencast.from.2024-10-09.13-36-53.mp4
The text was updated successfully, but these errors were encountered: