Answer by Josiah Nyarega for tmux disregarding the configuration file
My issue is laughable: It is a syntax error 🤣🤣. I missed a closing quote at the end of this statement 👇 . I wish they could at least report some errors to new users like me. set -g @plugin...
View ArticleAnswer by Bruno Bronosky for tmux disregarding the configuration file
12 years agoA hero left a comment.It Works For Me™. Try running strace -s9999 -f -o tmux.strace tmux -c true and post the output of grep -C5 'tmux\.conf' tmux.strace. –Gilles 'SO- stop being evil'Sep...
View ArticleAnswer by nextloop for tmux disregarding the configuration file
tmux not load ~/.tmux.conf automatically, you must source manually, for the first time that you install tmux or every time that you change anything in ~/.tmux.conf by:tmux source-file ~/.tmux.confit's...
View ArticleAnswer by Connor McCormick for tmux disregarding the configuration file
I quit and reopened my terminal and that's the only way I could get it to work again. Not sure why.using Terminal on Mac OSX
View ArticleAnswer by mahemoff for tmux disregarding the configuration file
I had this problem because I was using tmux-next. Initially I solved it just by passing the config file explicitly tmux -f ~/.tmux.conf as the question here points out. (I had already aliased tmux-next...
View ArticleAnswer by HVNSweeting for tmux disregarding the configuration file
run inside your tmux session:tmux source-file /absolute/path/to/your/.tmux.conf
View ArticleAnswer by Josh Earl for tmux disregarding the configuration file
There's also a default keyboard shortcut binding to reload your ~/.tmux.conf, at least in my installation: C-b r. If you hit C-b ? it brings up a list of all bound keyboard shortcuts, so you can see if...
View ArticleAnswer by peroumal1 for tmux disregarding the configuration file
To reload your ~/.tmux.conf without killing your session, you can simply do: <prefix> :source-file /absolute/path/to/your/.tmux.confwhere <prefix> is <C-b> by default.
View ArticleAnswer by Michael for tmux disregarding the configuration file
The file ~/.tmux.conf is loaded when the tmux server is first started. So if there are existing tmux sessions, starting a new session with tmux does not result in reloading the .tmux.conf file. Try...
View Articletmux disregarding the configuration file
I just installed tmux on Ubuntu 10.04 and tried to remap the prefix key to C-a by creating the file ~/.tmux.conf with these lines:set-option -g prefix C-aunbind-key C-bWhen starting tmux, both...
View Article