1

I am using iterm on my macbook and want to split it into multiple panes (both horizontally and vertically) like conemu. My end goal is to be able to type different git commands in each pane (conemu example). Is iterm capable of doing this?

If it's not possible with iterm, what are my other options?

I know you can "cmd + d" to split but then I only get the same terminal in 2 different panes.

Andy
  • 11
  • 1
  • 4
  • Wrong site, I'm afraid. You're looking for [apple.se] or [su] instead. This site is for programming related questions. More information is available in the [help]. Good luck. – Ken White Jun 30 '18 at 00:33

1 Answers1

0

Are you sue you are using iTerm? Any way I'll sugest to forget about it and use Terminal, for a macOS experience. iTerm remembers me of Linux, you have all the options but you'll spend all day configuring it and when finally is ok then some bug will hit and take your peace of mind How to exit alternate screen scrolling on iTerm2 Vim?.

This might help https://apple.stackexchange.com/questions/6504/how-do-split-panes-in-terminal-work. And @BennyPowers answer at https://superuser.com/questions/55459/how-to-get-vertical-split-of-terminal-in-mac-to-execute-different-actions.

I use the macOS native way to split vertically and GNU Screen (which came with macOS) to split horizontally. Execute screen then C-a S (to split into two regions), C-a TAB (to swith to the other region) and C-a c (to open bash).

You can even resize it with C-a : then type resize 10 i.e. and for more man screen.

When its done you exit andC-a k to destroy the window.

For completeness. A lot of people say tmux https://github.com/tmux/tmux/wiki is a better alternative to GNU Screen. I never tried afraid of the same experience I had with iTerm 2.

KcFnMi
  • 5,516
  • 10
  • 62
  • 136