We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd0677e + 11a2449 commit 34ea467Copy full SHA for 34ea467
tmuxp/util.py
@@ -303,6 +303,10 @@ def has_required_tmux_version(version=None):
303
proc = tmux('-V')
304
305
if proc.stderr:
306
+ if proc.stderr[0] == 'tmux: unknown option -- V':
307
+ raise exc.TmuxpException(
308
+ 'tmuxp supports tmux 1.8 and greater. This system'
309
+ ' is running tmux 1.3 or earlier.')
310
raise exc.TmuxpException(proc.stderr)
311
312
version = proc.stdout[0].split('tmux ')[1]
0 commit comments