How do you open the emacs calendar as well as the diary when you start Terminal in Mac OS X with the .bash_profile that I created in my home directory. Any help will be greatly appreciated. Below is my code that I have so far for my .bash_profile:

date
emacs

没有正确的解决方案

其他提示

This is probably not the best way to do this, but answering your question directly replace the emacs line in .bash_profile with the following:

emacs --eval '(progn (calendar) (diary))'

Depending on what you're doing, it might be better to include the following lines in your .emacs:

(calendar)
(diary)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top