Tmux在启动时[退出]


8

我最近安装了Tmux,对此感到非常高兴。突然我尝试从终端中创建新会话时,虽然会开始引发错误:

tmux new -s my-session

将导致应用程序崩溃,仅返回

[exited]

并将以下内容放在下一个命令行中:

62;9;c

作为Tmux的新手,我不知道如何解决此问题。是否有人知道此错误并知道如何解决?

Answers:


13

拆下

set-option -g default-command "reattach-to-user-namespace -l zsh"

从配置解决了我的问题。


在我看来,是特定的问题,62;9;c配置文件中的行和列索引不是在哪里引发错误的?
user.dz 2014年

这是否可以确定配置中遇到错误的位置?
Severin 2014年

我不知道,但是我问你是否知道?或者您可以确认是否这样?
user.dz 2014年

1
刚刚检查过,该错误发生在第27行,因此从62; 9; c开始没有任何进展
Severin 2014年

2

我遇到了这个问题,原因是我的.tmux.conf中的shell路径错误。

set -g default-shell /usr/local/bin/fish

它找不到外壳,因此崩溃了。您可能应该检查默认外壳程序的路径是否正确。


1
您的答案不清楚...正确的路径是什么?
用户

使用该命令which来定位文件的位置,例如:which fish
Syl 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.