Keyboard-Shortcuts

ctrl 滾動到使用 tmux 縮放終端模擬器

  • August 11, 2020

我正在使用以下 tmux 鍵綁定來使用滑鼠滾輪進行縮放。

# Ctrl Scroll to Zoom
bind-key -T root C-WheelUpPane { 
      run-shell "xdotool key Ctrl+plus"
}

bind-key -T root C-WheelDownPane { 
      run-shell "xdotool key Ctrl+minus"
}

bind-key -T root C-MouseDown2Pane { 
      run-shell "xdotool key Ctrl+0"
}

但是,我在Ctrl位於左側時遇到了一點問題。它在右手邊正常工作Ctrl。然而,左邊Ctrl的行為好像我正在放開控制鍵。而不是縮放,而是突然進入 tmux 複製模式。

可能是什麼問題?

在 macbook 中不會出現此問題。

目前,它似乎是鬆餅 WM 中的一個錯誤。

診斷詳情在https://github.com/tmux/tmux/issues/2345

該問題在https://github.com/linuxmint/muffin/issues/569中報告

引用自:https://unix.stackexchange.com/questions/603834