Can I configure the tmux startup command? #233
-
|
My CLI environment is a shell inside a container, and I need to start I've looked but can't find a guide to the configuration options (apologies if I missed it!) and was wondering if I could specify what invocation tmux = "tmux -u"Is that possible please? (Thanks for the inspiration on your setup and tools and for the work on In the meantime, I've hacked my dj@7465f9b2d4f4:~$ ls -l ~/.local/bin/ | grep tmux; cat $(which tmux)
-rwxr-xr-x 1 dj dj 25 Mar 4 16:53 tmux
drwxr-xr-x 6 dj dj 12288 Mar 4 11:52 tmux-3.5a
-rw-r--r-- 1 dj dj 715619 Mar 4 11:34 tmux-3.5a.tar.gz
-rwxr-xr-x 1 dj dj 1161728 Mar 4 11:52 tmux-binary
exec tmux-binary -u "$@"
dj@7465f9b2d4f4:~$ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
You may want to first try ensuring UTF-8 is properly set in your shell configuration, maybe something like this: export LC_CTYPE=en_US.UTF-8I'm open to allowing flags for the startup command but I want to check first that you can solve it this way. |
Beta Was this translation helpful? Give feedback.
You may want to first try ensuring UTF-8 is properly set in your shell configuration, maybe something like this:
export LC_CTYPE=en_US.UTF-8I'm open to allowing flags for the startup command but I want to check first that you can solve it this way.