📅 2016-Jan-28 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ byobu, mouse ⬩ 📚 Archive
In Byobu, you will find that many mouse operations work just like in a raw terminal emulator. For example, you can select content by holding down the left-button and moving the mouse. And pasting by pressing the middle-button. However, you will find that the mouse operations are not Byobu-aware or Tmux-aware. For example, you can select text that spans across two split views.
Byobu/Tmux has support for mouse operations. When enabled, the mouse operations seem more natural and aware of the split views and windows of Byobu/Tmux. For example, it can be useful to use the mouse for operations such as selecting a split, resizing a split and for scrolling the console content to view history. However, note that such mouse support is turned off by default.
To toggle mouse support, press Alt+F12
. (If it does not work, check if the keyboard shortcut is set for something else by your window manager.) When mouse support is on, the mouse cursor turns into an arrow. When it is off, the mouse cursor is an I-beam. When you toggle, you can see that Mouse: ON
or Mouse: OFF
is displayed at the bottom of Byobu.
To select a split window, just click anywhere inside it using the mouse.
To resize a split window, select the split and then drag its thick orange borders.
To scroll the content of a window, select the window and use the mouse scroller to scroll up and down. You will notice that the scrolling is split-aware. Only the console output inside a split will scroll, not the entire terminal contents.
To enable mouse support by default for all these operations, add these lines to your ~/.byobu/profile.tmux
:
# Enable mouse support including scrolling
set -g mouse on
# Versions prior to 2.1 may want this too:
set -g mouse-utf8 on
Restart Byobu to see the effect.
Tried with: Byobu 5.77 and Ubuntu 14.04