OS X 终端‘拆分窗格’不同的会话

OS X 终端‘拆分窗格’不同的会话

我经常在最大化模式下使用 OS X 终端。但问题是我想将其分成两个或更多部分,每个窗格都有不同的终端进程。

像这样。

这

但显然“拆分窗格”命令只是克隆一个进程。有什么想法可以让我实现这个功能(最好没有项2或任何其他侧终端)。

答案1

我不知道您可以在终端中拆分窗格。但在最新版本的 OS X 中,终端支持选项卡(命令+t创建一个新的)。因此,虽然这可能不是最理想的,但您可以设置四个选项卡并循环浏览它们来检查您的流程。命令+{向左循环。命令+}向右循环。

答案2

尝试这个

# First install tmux
brew install tmux

# For mouse support (for switching panes and windows)
# Only needed if you are using Terminal.app (iTerm has mouse support)
Install http://www.culater.net/software/SIMBL/SIMBL.php
Then install https://bitheap.org/mouseterm/

# More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/

# Enable mouse support in ~/.tmux.conf
set-option -g mouse-select-pane on
set-option -g mouse-select-window on
set-window-option -g mode-mouse on

# Install Teamocil to pre define workspaces
https://github.com/remiprev/teamocil

# See http://files.floriancrouzat.net/dotfiles/.tmux.conf for configuration examples

原文要点如下:https://gist.github.com/simme/1297707

答案3

相关内容