I have two sessions open in Emacs-ESS: one on my desktop and one on a server using tramp. How can I tell ESS which session to use?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Well I use

M-x ess-switch-process

all the time to switch between my (local) R sessions inside Emacs. Sections 3.2 has details.

Edit As a follow-up to aL3xa's comment, I also have these in a my dot.emacs:

(require 'uniquify)
(setq uniquify-buffer-name-style 'post-forward-angle-brackets)
; Slightly more debatable
(global-set-key (kbd "C-x C-b") 'ibuffer)

which makes the process switch much nicer. Kudos to CGWalters, another Emacs user from whom I copied this.

link|improve this answer
@Dirk thanks - that works now; I was trying to do this before starting a new process, but now I see that I need to do M-x ess-start-process and then M-x ess-switch-process – David Dec 21 '10 at 22:16
1  
@David, ess-switch-process is bound to C-c C-s, also a related functionality is C-c C-k from iESS which allows for easy navigation between iESS buffers. – VitoshKa Dec 22 '10 at 9:05
1  
Another "solution" is to use C-x b and type *R followed by desired session ID. It's a native Emacs feature (it's not ESS-specific). You'll see previously used buffer name in minibufer as default, so if you switch between two R sessions, this can be quite handy. – aL3xa Dec 23 '10 at 12:49
Good point. Two-or-so years ago I learned about uniquifi which makes buffer switching so much better and easier -- see my amended answer. – Dirk Eddelbuettel Dec 23 '10 at 13:23
@Dirk (global-set-key (kbd "C-x C-b") 'ibuffer) makes my emacs hang – David Jan 4 '11 at 1:45
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.