Reputation: 201
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
Reputation: 26592
You can start vi in a separate window with :
open -a Terminal /usr/bin/vi
Upvotes: 1