0
votes
1answer
41 views

Tmux: pane title (#T) is reported as “fg” rather than something more informative

Is there a way to get Tmux to show a more informative pane name? If in a particular pane I have suspended a process and come back to it (with Zsh that's invoking it with either fg or something like ...
2
votes
2answers
631 views

Vim: Difference between t_Co=256 and term=xterm-256color in conjunction with TMUX

I am testing the various different terminals that I tend to use to SSH into Linux boxes that I have Tmux set up on. Basically I noticed this behavior, and I am hoping that somebody could offer an ...
2
votes
2answers
117 views

Wrong coloring w/ Powerline in Terminal.app

I setup tmux powerline, and installed all the corresponding fonts. The problem I am running into now is colors not appearing the same when acting as a background in the hardline. I made sure to ...
1
vote
3answers
137 views

running tmux automatically when xterm is launched: what is the most elegant/correct solution?

I am trying to setup my workstation in such a way that tmux is run for each terminal (xterm, gnome-terminal, ...) that is launched. I was thinking to add tmux to the .bashrc; problem is that if I ...
0
votes
0answers
56 views

Tmux equivalent of ctrl+k (copy current pos -> eol into buffer)

I have been using tmux for some time now and really like the internal copy buffer. I frequently find myself wanting to copy a command between panes but haven't really found an easy way of doing this. ...
1
vote
2answers
200 views

How to clear bell state from all tmux windows

I help maintain a large number of Unix-like servers, and so keep a script called tmux-rebuild that I use to rebuild all the tmux sessions and windows with SSH links to each server. I have tmux ...
4
votes
1answer
1k views

How can I make TMUX be active whenever I start a new shell session?

instead of having to type tmux every time, how could I have tmux always be used for new session windows? So if I have no terminal windows open and then I open one, how can that first session be in ...
14
votes
4answers
4k views

How can I clear scrollback buffer in tmux?

FYI I am using tmux through Mac OSX Terminal app.
2
votes
2answers
414 views

tmux: pane dividing line display difference between terminals

I'm switching terminal applications, from OSX's Terminal.app to the Google Chrome Secure Shell app, and the way dividing lines between panes in a window in tmux changes from one terminal to the other. ...
1
vote
1answer
517 views

tmux pipe-pane not working

I have a shortcut defined to start logging a pane to a file, and another to stop logging. The shortcuts are active. These are the commands in my .tmux.conf: bind-key H pipe-pane "cat ...
0
votes
2answers
898 views

Loading tmux sessions from file

I'd like to be able in tmux to load sessions saved in a file including window/pane and shell setups. I have this in ~/.tmux/my_session: new -d -s test1 neww -k -t test1:1 top new -d -s test2 neww -k ...
15
votes
1answer
1k views

Howto go to beginning of line in tmux after remapping prefix to CTRL+A?

following the suggestion in this Archlinux wiki, in the page about tmux I remapped the command key prefix to C-a, to mimic GNU screen and to have something easier on the keyboard than C-b. So my ...
3
votes
3answers
2k views

Why am I getting a “failed to connect to server” message from tmux when I try to list sessions?

Here's what's happening to me: I start tmux sessions using tmux -L name1, tmux -L name2; then I detatch them using ctrl+B+d. Then I try to get a list of the currently running sessions on my computer. ...
1
vote
1answer
1k views

How to scroll through command history of tmux?

C-b: gives you tmux command prompt. Is there a way to scroll through the commands entered on it previously? Up arrow or Ctrl p/n don't seem to work.
11
votes
3answers
2k views

With $TERM='screen-256color' under tmux, HOME and END keys don't work. Why?

I have tmux set up with $TERM being set to screen-256color correctly. This works fine, and colours are set correctly, however it prevents me from sending HOME and END keys to the terminal, which are ...
1
vote
2answers
458 views

Adding informative statusbar to fullscreen terminal window

Briefly: I would love to add a status bar that sticks to either the bottom or top of my terminal window that provides glancible information (e.g. battery life, signal strength, email count, ...
0
votes
2answers
279 views

Where is the source for /usr/bin/lock?

I have a Mac with snow leopard. I often work off the terminal using tmux (or GNU screen) When I walk away I remote ssh back to my computer. The thing is sometimes I have to step away from the computer ...
9
votes
2answers
4k views

How to share clipboard between tmux/vim and osx

I found solution for iterm+vim here -> http://stackoverflow.com/questions/677986/vim-copy-selection-to-os-x-clipboard Now i use fakeclip, and it work in vim directly, but not when i use tmux to split ...