-
Notifications
You must be signed in to change notification settings - Fork 203
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
Termite terminal support #985
Comments
As a workaround you could just masquerade as
The problem however is not with Yi, but with your system. Maybe this helps: NixOS/nixpkgs#8473 |
I guess it's a problem with termite, because I'm on arch linux. Anyway, just adding export TERM=xterm-256color |
I can't reproduce this. The setupterm error should only be shown if the Can you compile (with #include <stdio.h>
#include <term.h>
#include <stdlib.h>
int main() {
int ret = 0;
char* term = getenv("TERM");
printf("%s\n",term);
setupterm(term,1,&ret);
printf("%d\n", ret);
return 0;
} it should return:
|
@mbid In that case do you have |
@janpath Yes, @noughtmare The c program does exactly what it you said it should. |
I'm using the terminal app termite. Yi seems to need get along with it very well:
Yi is working in xterm and terminator. If this is low-hanging fruit, I'd love some pointers to get started myself.
The text was updated successfully, but these errors were encountered: