I use aquamacs 90% of the time to edit R files with ESS (Emacs Speaks Statistics). In this mode, I find it indispensable to have a split window, C-x 3 C-x 2, such that I can view simultaneously the source code and the R buffer (terminal window). Thus, every time I launch aquamacs, I need to perform the following steps: split the window, select the right one, switch buffer to *R*, go back to the file. How can I save this setup across sessions?
thanks.
C-h kand issue the keybinding to see underlying commands, then add them to.emacsfile. It shouldn't be too cumbersome... – aL3xa Jan 13 at 3:03(split-window-side-by-side), which works on its own, but somehow(switch-to-buffer "*R*")has a side-effect to revert the layout to one (small) window. – baptiste Jan 13 at 3:31