help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: yet another rookie question M-x shell


From: mlathe
Subject: Re: yet another rookie question M-x shell
Date: Fri, 10 Mar 2006 17:39:29 -0800 (PST)

FYI i added this to help me create several buffers with predictable names to
help when coding.

This might be helpful if you always want the same shells open for each emacs
session

;; pre-create shell buffers
(defun thias-shell ()
  (interactive)
  (shell)
  (rename-buffer "*Sdefault*")
  (shell)
  (rename-buffer "*Shelper*")
  (shell)
  (rename-buffer "*Scompile*")
  (shell)
  (rename-buffer "*Srun*")
  (split-window-vertically)
  (shell)
  (rename-buffer "*Slog*")
)

--
View this message in context: 
http://www.nabble.com/yet-another-rookie-question-M-x-shell-t1260194.html#a3350097
Sent from the Emacs - Help forum at Nabble.com.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]