-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 14 replies
-
Oh, I have exactly the same "delete as space" as you! The |
Beta Was this translation helpful? Give feedback.
-
Hi, thats because on your server does not recognize xterm-ghostty, use as fallback in your .ssh-config as last lines:
|
Beta Was this translation helpful? Give feedback.
-
when i ssh from mac 15.2 to linux (ubuntu 22.04 LTS) via ssh, i get double text.. when typing ls i get lsls (but command works), its just the local echo, is this something I have to set differently ? |
Beta Was this translation helpful? Give feedback.
I suspect you've got a mix of programs using the system ncurses and the brew installed one, so it will work for tools built against the brew version, but not the system one. As @edrozenberg says putting it in the system location in
/usr/share
will work, but this is a bit confusing as you'll have to install it twice.Better IMO would be to use a command which calls the system tic directly:
infocmp -x | ssh YOUR-SERVER -- /usr/bin/tic -x -
this will use the system version oftic
, which will then find it can't write to/usr/share
and install it in~/.terminfo
which both instances of ncurses will pick up.(This happens because the home/linuxbrew installation location is writable to your norma…