Search code examples
emacsmacos-carboncarbon-emacs

how can I fire up carbon emacs (as editor instead of emacs in default) to edit a file under terminal.app?


How to configure the bash file?


Solution

  • I use:

    alias cemacs='open -a /Applications/Emacs.app' 
    

    Then I can type cemacs foo.txt and have emacs open the file.

    (Is that what you were asking? The question was a little vague.)