When I press the "é" key multiple times on my keyboard, here is what tmux print (notice the spaces) :
arcanis@~ > é é é é é é é é é é é é é
It also broke emacs when the file contains utf8 characters.
My locale is :
arcanis@~ > locale
LANG=en_US.UTF-8
LC_CTYPE="en_US.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="en_US.UTF-8"
LC_COLLATE="en_US.UTF-8"
LC_MONETARY="en_US.UTF-8"
LC_MESSAGES="en_US.UTF-8"
LC_PAPER="en_US.UTF-8"
LC_NAME="en_US.UTF-8"
LC_ADDRESS="en_US.UTF-8"
LC_TELEPHONE="en_US.UTF-8"
LC_MEASUREMENT="en_US.UTF-8"
LC_IDENTIFICATION="en_US.UTF-8"
LC_ALL=
How can I fix this ?
asked Oct 21, 2012 at 20:27
1 Answer 1
.tmux.conf
set -g utf8 on
Fixed the exact same issue for me.
-
3Note that this option is the default in Tmux since around 2016, and is no longer a valid option.dotancohen– dotancohen2020年07月12日 14:30:21 +00:00Commented Jul 12, 2020 at 14:30
utf8 on
and see if that helps.