Quantcast
Channel: tmux disregarding the configuration file - Super User
Browsing all 10 articles
Browse latest View live

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 Article


Answer 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 Article

Answer 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 Article

Answer 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 Article

Answer 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 Article


Answer by HVNSweeting for tmux disregarding the configuration file

run inside your tmux session:tmux source-file /absolute/path/to/your/.tmux.conf

View Article

Answer 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 Article

Answer 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 Article


Answer 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 Article


tmux 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
Browsing all 10 articles
Browse latest View live