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

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

我正在使用以下 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 複製模式。

可能是什麼問題?

答案1

macbook 上不會出現此問題。

目前看來這是鬆餅 WM 中的一個錯誤。

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

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

相關內容