roqds
roqds

Reputation: 201

Mac Bash shell how to display editor in separate Window

I would like to open an editor in a separate window from my terminal (MacOS bash shell). When I run for example vi & or emacs & the process starts but no window pops up. Could you please tell me how to display the editor (probably a config variable to set) ?

Thank you !

Upvotes: 0

Views: 84

Answers (1)

Philippe
Philippe

Reputation: 26592

You can start vi in a separate window with :

open -a Terminal /usr/bin/vi

Upvotes: 1

Related Questions