Skip to content

Commit a87bb2b

Browse files
davindicodeclaude
andcommitted
Extend tmux version warning to include 3.3.x
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 8addee3 commit a87bb2b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/terminal/InputBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ export default function InputBox() {
630630
)}
631631
{activeGroup === TMUX_TAB && !inTmux && (
632632
<div className="border-b border-gray-700/50 bg-[#12122a] px-3 py-2">
633-
{tmuxVersion && tmuxVersion.startsWith("3.4") && (
633+
{tmuxVersion && (tmuxVersion.startsWith("3.3") || tmuxVersion.startsWith("3.4")) && (
634634
<div className="text-[10px] text-yellow-400 bg-yellow-900/20 border border-yellow-800/30 rounded px-2 py-1 mb-1.5">
635635
tmux {tmuxVersion} has known key handling issues. Upgrade to 3.5+ or add <code className="text-yellow-300">set -g extended-keys off</code> to ~/.tmux.conf
636636
</div>

0 commit comments

Comments
 (0)