shmish111
shmish111

Reputation: 3797

zsh in IntelliJ

I wanted to get a zsh terminal running in IntelliJ, I set up an external tool which was just zsh and set the working directory to my home directory. When I ran it however there were 2 problems straight away:

  1. My .zprofile hadn't been loaded
  2. Tab didn't auto-complete anything

Does anyone know if I can get zsh working nicely inside IntelliJ?

Upvotes: 46

Views: 48941

Answers (2)

Loginus
Loginus

Reputation: 449

For me it still was using Bourne shell even though I selected /bin/zsh in the prefernces window. What helped was to execute

chsh -s /bin/zsh

After restarting intelij terminal, zsh was properly started

Upvotes: 1

Carl Karawani
Carl Karawani

Reputation: 1701

Confirmed! Available in IntelliJ 13

zsh terminal

Upvotes: 107

Related Questions