diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 17:23:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-10-19 17:23:43 +0000 |
commit | 8580e8c15390af8dffd37c9c930c0f11cbb2ec37 (patch) | |
tree | ebdab116982b7575180e08f893a96fce35fac084 | |
parent | 543e7b0f03f2c41752ec2e244e26c525a4791cb8 (diff) | |
download | rtmux-8580e8c15390af8dffd37c9c930c0f11cbb2ec37.tar.gz rtmux-8580e8c15390af8dffd37c9c930c0f11cbb2ec37.tar.bz2 rtmux-8580e8c15390af8dffd37c9c930c0f11cbb2ec37.zip |
Whoops, fix key bindings.
-rw-r--r-- | examples/nicm-start-tmux.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/nicm-start-tmux.sh b/examples/nicm-start-tmux.sh index d58afcdb..b4029d1b 100644 --- a/examples/nicm-start-tmux.sh +++ b/examples/nicm-start-tmux.sh @@ -18,6 +18,9 @@ if ! $TMUX -s $SESSION attach 2>/dev/null; then $TMUX -s $SESSION neww -d # 9 $TMUX set prefix ^A + $TMUX unbind ^B + $TMUX bind ^A send-prefix + $TMUX set bell-action none $TMUX -s $SESSION attach |