unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Run multiple shells in Emacs.
@ 2021-05-31 23:13 Hongyi Zhao
  2021-05-31 23:18 ` Jean Louis
  2021-05-31 23:23 ` Óscar Fuentes
  0 siblings, 2 replies; 7+ messages in thread
From: Hongyi Zhao @ 2021-05-31 23:13 UTC (permalink / raw)
  To: help-gnu-emacs

What's the preferable way to open multiple shell windows at the same
time in Emacs?

After searching with Google, I find the discussion here:

<https://stackoverflow.com/questions/6532998/how-to-run-multiple-shells-on-emacs>

Basically, there are two types of methods to accomplish this:

1. Write a simple function, just as the one suggested on the above website:

(defun create-shell ()
    "creates a shell with a given name"
    (interactive);; "Prompt\n shell name:")
    (let ((shell-name (read-string "shell name: " nil)))
    (shell (concat "*" shell-name "*"))))

2. Use an Emacs plugin/package, and I've found the following one:
<https://github.com/manateelazycat/aweshell>.

What are the recommended ways to use Emacs based on this kind of technique?

Regards
-- 
Assoc. Prof. Hongyi Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
NO. 552 North Gangtie Road, Xingtai, China



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-06-02  0:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-31 23:13 Run multiple shells in Emacs Hongyi Zhao
2021-05-31 23:18 ` Jean Louis
2021-05-31 23:23 ` Óscar Fuentes
2021-05-31 23:54   ` Hongyi Zhao
2021-06-01  3:23     ` Abhiseck Paira
2021-06-01 11:21       ` Leo Butler
2021-06-02  0:52         ` Hongyi Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).