emacs gui from the terminal

0

I have in my ~/.bashrc an alias setup so emacs will open in the terminal. How can I open the gui without commenting out the alias, closing down the terminal, re-opening the terminal, and then doing emacs return?

I need to open the GUI every now and then but not too often.

dustin

Posted 2013-04-16T13:53:26.527

Reputation: 247

Answers

1

To workaround an alias, use the full path:

/usr/bin/emacs

or enclose the command in quotes:

'emacs'

or escape any character:

\emacs

You can also remove aliases temporarily using unalias.

choroba

Posted 2013-04-16T13:53:26.527

Reputation: 14 741