* man/makefile.w32-in (mostlyclean, clean, maintainer-clean): Use
[bpt/emacs.git] / man / eshell.texi
CommitLineData
572a0c97 1\input texinfo @c -*-texinfo-*-
ba0dca35 2@c "@(#)$Name: $:$Id: eshell.texi,v 1.19 2003/09/01 15:45:45 miles Exp $"
572a0c97
JW
3@c %**start of header
4@setfilename ../info/eshell
5@settitle Eshell: The Emacs Shell
18f952d5 6@synindex vr fn
572a0c97
JW
7@c %**end of header
8
18f952d5
KB
9@copying
10This manual is for Eshell, the Emacs shell.
b409f09b 11
18f952d5
KB
12Copyright @copyright{} 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
13
14@quotation
b409f09b
GM
15Permission is granted to copy, distribute and/or modify this document
16under the terms of the GNU Free Documentation License, Version 1.1 or
17any later version published by the Free Software Foundation; with no
18Invariant Sections, with the Front-Cover texts being ``A GNU
19Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
20license is included in the section entitled ``GNU Free Documentation
21License'' in the Emacs manual.
22
23(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify
24this GNU Manual, like GNU software. Copies published by the Free
25Software Foundation raise funds for GNU development.''
26
27This document is part of a collection distributed under the GNU Free
28Documentation License. If you want to distribute this document
29separately from the collection, you can do so by adding a copy of the
30license to the document, as described in section 6 of the license.
18f952d5
KB
31@end quotation
32@end copying
33
34@dircategory Emacs
35@direntry
36* Eshell: (eshell). A command shell implemented in Emacs Lisp.
37@end direntry
38
39@setchapternewpage on
572a0c97 40
572a0c97
JW
41@titlepage
42@sp 4
43@c The title is printed in a large font.
44@center @titlefont{User's Guide}
45@sp
46@center @titlefont{to}
47@sp
48@center @titlefont{Eshell: The Emacs Shell}
49@ignore
50@sp 2
dace60cf 51@center release 2.4
572a0c97
JW
52@c -release-
53@end ignore
54@sp 3
55@center John Wiegley
56@c -date-
57
572a0c97
JW
58@page
59@vskip 0pt plus 1filll
18f952d5 60@insertcopying
572a0c97
JW
61@end titlepage
62
997c7f71
EZ
63@contents
64
572a0c97
JW
65@c ================================================================
66@c The real text starts here
67@c ================================================================
68
18f952d5 69@ifnottex
7d97fbf4 70@node Top, What is Eshell?, (dir), (dir)
572a0c97
JW
71@top Eshell
72
73This manual documents Eshell, a shell-like command interpretor
dace60cf
JW
74implemented in Emacs Lisp. It invokes no external processes except for
75those requested by the user. It is intended to be a functional
572a0c97 76replacement for command shells such as @command{bash}, @command{zsh},
dace60cf
JW
77@command{rc}, or @command{4dos}; since Emacs itself is capable of
78handling the sort of tasks accomplished by those tools.
79@c This manual is updated to release 2.4 of Eshell.
18f952d5 80@end ifnottex
572a0c97
JW
81
82@menu
219227ea
JW
83* What is Eshell?:: A brief introduction to the Emacs Shell.
84* Installation:: For users of Emacs 20 and XEmacs.
177c0ea7
JB
85* Command basics:: The basics of command usage.
86* Commands::
87* Arguments::
88* Input/Output::
89* Process control::
90* Extension modules::
91* Extras and Goodies::
219227ea 92* Bugs and ideas:: Known problems, and future ideas.
177c0ea7
JB
93* Concept Index::
94* Function and Variable Index::
95* Key Index::
572a0c97
JW
96@end menu
97
7d97fbf4 98@node What is Eshell?
572a0c97 99@chapter What is Eshell?
997c7f71
EZ
100@cindex what is Eshell?
101@cindex Eshell, what it is
572a0c97 102
dace60cf 103Eshell is a @dfn{command shell} written in Emacs Lisp. Everything it
219227ea 104does, it uses Emacs' facilities to do. This means that Eshell is as
dace60cf
JW
105portable as Emacs itself. It also means that cooperation with Lisp code
106is natural and seamless.
572a0c97 107
dace60cf 108What is a command shell? To properly understand the role of a shell,
572a0c97
JW
109it's necessary to visualize what a computer does for you. Basically, a
110computer is a tool; in order to use that tool, you must tell it what to
304724c2 111do---or give it ``commands.'' These commands take many forms, such as
572a0c97
JW
112clicking with a mouse on certain parts of the screen. But that is only
113one form of command input.
114
115By far the most versatile way to express what you want the computer to
304724c2
RS
116do is by using an abbreviated language called @dfn{script}. In
117script, instead of telling the computer, ``list my files, please'',
118one writes a standard abbreviated command word---@samp{ls}. Typing
119@samp{ls} in a command shell is a script way of telling the computer
120to list your files.@footnote{This is comparable to viewing the
121contents of a folder using a graphical display.}
dace60cf
JW
122
123The real flexibility of this approach is apparent only when you realize
124that there are many, many different ways to list files. Perhaps you
125want them sorted by name, sorted by date, in reverse order, or grouped
126by type. Most graphical browsers have simple ways to express this. But
127what about showing only a few files, or only files that meet a certain
128criteria? In very complex and specific situations, the request becomes
129too difficult to express using a mouse or pointing device. It is just
130these kinds of requests that are easily solved using a command shell.
572a0c97
JW
131
132For example, what if you want to list every Word file on your hard
133drive, larger than 100 kilobytes in size, and which hasn't been looked
134at in over six months? That is a good candidate list for deletion, when
135you go to clean up your hard drive. But have you ever tried asking your
136computer for such a list? There is no way to do it! At least, not
137without using a command shell.
138
dace60cf
JW
139The role of a command shell is to give you more control over what your
140computer does for you. Not everyone needs this amount of control, and
141it does come at a cost: Learning the necessary script commands to
572a0c97
JW
142express what you want done. A complicated query, such as the example
143above, takes time to learn. But if you find yourself using your
144computer frequently enough, it is more than worthwhile in the long run.
dace60cf 145Any tool you use often deserves the time spent learning to master it.
572a0c97
JW
146@footnote{For the understandably curious, here is what that command
147looks like: But don't let it fool you; once you know what's going on,
148it's easier than it looks: @code{ls -lt **/*.doc(Lk+50aM+5)}.}
149
150As of Emacs 21, Eshell is part of the standard Emacs distribution.
151
152@menu
dace60cf 153* Contributors to Eshell:: People who have helped out!
572a0c97
JW
154@end menu
155
7d97fbf4 156@node Contributors to Eshell
572a0c97 157@section Contributors to Eshell
997c7f71
EZ
158@cindex contributors
159@cindex authors
572a0c97
JW
160
161Contributions to Eshell are welcome. I have limited time to work on
162this project, but I will gladly add any code you contribute to me to
163this package.
164
165The following persons have made contributions to Eshell.
166
167@itemize @bullet
168@item
169Eli Zaretskii made it possible for Eshell to run without requiring
170asynchronous subprocess support. This is important for MS-DOS, which
171does not have such support.@refill
172
173@item
174Miles Bader contributed many fixes during the port to Emacs 21.@refill
175
176@item
177Stefan Monnier fixed the things which bothered him, which of course made
178things better for all.@refill
179
180@item
181Gerd Moellmann also helped to contribute bug fixes during the initial
182integration with Emacs 21.@refill
183
184@item
185Alex Schroeder contributed code for interactively querying the user
186before overwriting files.@refill
187
188@item
189Sudish Joseph helped with some XEmacs compatibility issues.@refill
572a0c97
JW
190@end itemize
191
192Apart from these, a lot of people have sent suggestions, ideas,
193requests, bug reports and encouragement. Thanks a lot! Without you
194there would be no new releases of Eshell.
195
7d97fbf4 196@node Installation
997c7f71
EZ
197@chapter Installation
198@cindex installation
572a0c97 199
dace60cf 200As mentioned above, Eshell comes preinstalled as of Emacs 21. If you're
572a0c97
JW
201using Emacs 20.4 or later, or XEmacs 21, you can download the most
202recent version of Eshell from
4711065a 203@url{http://www.gci-net.com/users/j/johnw/Emacs/packages/eshell.tar.gz}.
572a0c97 204
dace60cf 205However, if you are using Emacs 21, you may skip this section.
572a0c97 206
997c7f71 207@section Short Form
572a0c97
JW
208
209Here's exactly what to do, with no explanation why:
210
211@enumerate
997c7f71
EZ
212@item
213@samp{M-x load-file RET eshell-auto.el RET}.
214
215@item
216@samp{ESC : (add-to-list 'load-path "<path where Eshell resides>") RET}.
217
218@item
219@samp{ESC : (add-to-list 'load-path "<path where Pcomplete resides>") RET}.
220
221@item
222@samp{M-x eshell RET}.
572a0c97
JW
223
224You should see a version banner displayed.
225
997c7f71
EZ
226@item
227@samp{ls RET}.
572a0c97
JW
228
229Confirm that you see a file listing.
230
997c7f71
EZ
231@item
232@samp{eshell-test RET}.
572a0c97 233
997c7f71 234Confirm that everything runs correctly. Use @kbd{M-x eshell-report-bug} if
572a0c97
JW
235not.
236
997c7f71
EZ
237@item
238@samp{cd $@{dirname (locate-library "eshell-auto")@} RET}.
239
240@item
241@samp{find-file Makefile RET}.
242
243@item
244Edit the Makefile to reflect your site.
245
246@item
247@samp{M-x eshell RET}.
248
249@item
250@samp{make install RET}.
251
252@item
253@samp{find-file $user-init-file RET}.
254
255@item
256Add the following lines to your @file{.emacs} file:
572a0c97
JW
257
258@example
259(add-to-list 'load-path "<directory where you install Eshell>")
260(load "eshell-auto")
261@end example
262
997c7f71
EZ
263@item
264@samp{M-x eshell RET}.
265
266@item
267@samp{customize-option #'eshell-modules-list RET}.
268
269@item
270Select the extension modules you prefer.
271
272@item
273Restart Emacs!
274
275@item
276@samp{M-x info RET m Eshell RET}.
572a0c97
JW
277
278Read the manual and enjoy!
279@end enumerate
280
997c7f71 281@section Long Form
572a0c97
JW
282
283@enumerate
284@item
285Before building and installing Eshell, it is important to test that it
997c7f71 286will work properly on your system. To do this, first load the file
572a0c97
JW
287@file{eshell-auto}, which will define certain autoloads required to run
288Eshell. This can be done using the command @kbd{M-x load-file}, and
289then selecting the file @file{eshell-auto.el}.
290
291@item
292In order for Emacs to find Eshell's files, the Eshell directory must be
293added to the @code{load-path} variable. This can be done within Emacs by
294typing:
295
296@example
297ESC : (add-to-list 'load-path "<path where Eshell resides>") RET
298ESC : (add-to-list 'load-path "<path where Pcomplete resides>") RET
299@end example
300
301@item
302Start Eshell from the distributed sources, using default settings, by
303typing @kbd{M-x eshell}.
304
305@item
306Verify that Eshell is functional by typing @command{ls} followed by
997c7f71 307@key{RET}. You should have already seen a version banner announcing the
572a0c97
JW
308version number of this release, followed by a prompt.
309
310@item
997c7f71 311Run the test suite by typing @command{eshell-test} followed by @key{RET}
572a0c97
JW
312in the Eshell buffer. It is important that Emacs be left alone while
313the tests are running, since extraneous command input may cause some of
314the tests to fail (they were never intended to run in the background).
315If all of the tests pass, Eshell should work just fine on your system.
316If any of the tests fail, please send e-mail to the Eshell maintainer
317using the command @kbd{M-x eshell-report-bug}.
318
319@item
320Edit the file @file{Makefile} in the directory containing the Eshell
219227ea 321sources to reflect the location of certain Emacs directories at your
572a0c97
JW
322site. The only things you really have to change are the definitions of
323@code{lispdir} and @code{infodir}. The elisp files will be copied to
324@code{lispdir}, and the info file to @code{infodir}.
325
326@item
997c7f71
EZ
327Type @kbd{make install} in the directory containing the Eshell sources.
328This will byte-compile all of the @file{*.el} files and copy both the
572a0c97
JW
329source and compiled versions to the directories specified in the
330previous step. It will also copy the info file, and add a corresponding
997c7f71
EZ
331entry to your @file{dir} file----if the program @code{install-info} can
332be found on your system.
572a0c97
JW
333
334If you only want to create the compiled elisp files, but don't want to
997c7f71 335install them, you can type just @kbd{make} instead.
572a0c97
JW
336
337@item
338Add the directory into which Eshell was installed to your
339@code{load-path} variable. This can be done by adding the following
340line to your @file{.emacs} file:
341
342@example
343(add-to-list 'load-path "/usr/local/share/emacs/site-lisp/eshell")
344@end example
345
346The actual directory on your system may differ.
347
348@item
349To install Eshell privately, edit your @file{.emacs} file; to install
350Eshell site-wide, edit the file @file{site-start.el} in your
351@file{site-lisp} directory (usually
352@file{/usr/local/share/emacs/site-lisp} or something similar). In
353either case enter the following line into the appropriate file:
354
355@example
356(load "eshell-auto")
357@end example
358
359@item
360Restart Emacs. After restarting, customize the variable
361@code{eshell-modules-list}. This variable selects which Eshell
362extension modules you want to use. You will find documentation on each
363of those modules in the Info manual.
572a0c97
JW
364@end enumerate
365
997c7f71
EZ
366@cindex documentation, printed version
367@cindex printed version of documentation
572a0c97
JW
368If you have @TeX{} installed at your site, you can make a typeset manual
369from @file{eshell.texi}.
370
371@enumerate
372@item
997c7f71
EZ
373Run @TeX{} by typing @kbd{texi2dvi eshell.texi}. (With Emacs 21.1 or
374later, typing @kbd{make eshell.dvi} in the @file{man/} subdirectory of
375the Emacs source distribution will do that.)
376
572a0c97
JW
377@item
378Convert the resulting device independent file @file{eshell.dvi} to a
379form which your printer can output and print it. If you have a
997c7f71 380postscript printer, there is a program, @code{dvi2ps}, which does that; there
572a0c97 381is also a program which comes together with @TeX{}, @code{dvips}, which
997c7f71
EZ
382you can use. For other printers, use a suitable DVI driver,
383e.g., @code{dvilj4} for LaserJet-compatible printers.
572a0c97
JW
384@end enumerate
385
7d97fbf4 386@node Command basics
219227ea 387@chapter Basic overview
572a0c97 388
219227ea
JW
389A command shell is a means of entering verbally-formed commands. This
390is really all that it does, and every feature described in this manual
391is a means to that end. Therefore, it's important to take firm hold on
392exactly what a command is, and how it fits in the overall picture of
393things.
572a0c97 394
dace60cf
JW
395@menu
396* Commands verbs:: Commands always begin with a verb.
397* Command arguments:: Some verbs require arguments.
398@end menu
399
7d97fbf4 400@node Commands verbs
dace60cf 401@section Commands verbs
572a0c97 402
dace60cf 403Commands are expressed using @dfn{script}, a special shorthand language
219227ea
JW
404computers can understand with no trouble. Script is an extremely simple
405language; oddly enough, this is what makes it look so complicated!
406Whereas normal languages use a variety of embellishments, the form of a
407script command is always:
572a0c97 408
dace60cf 409@example
304724c2 410@var{verb} [@var{arguments}]
dace60cf 411@end example
572a0c97 412
dace60cf
JW
413The verb expresses what you want your computer to do. There are a fixed
414number of verbs, although this number is usually quite large. On the
415author's computer, it reaches almost 1400 in number. But of course,
416only a handful of these are really necessary.
572a0c97 417
dace60cf 418Sometimes, the verb is all that's written. A verb is always a single
219227ea 419word, usually related to the task it performs. @command{reboot} is a
304724c2
RS
420good example. Entering that on GNU/Linux will reboot the
421computer---assuming you have sufficient privileges.
219227ea
JW
422
423Other verbs require more information. These are usually very capable
424verbs, and must be told specifically what to do. The extra information
425is given in the form of @dfn{arguments}. For example, the
426@command{echo} verb prints back whatever arguments you type. It
427requires these arguments to know what to echo. A proper use of
dace60cf 428@command{echo} looks like this:
572a0c97 429
dace60cf 430@example
304724c2 431echo This is an example of using echo!
dace60cf 432@end example
572a0c97 433
219227ea 434This script command causes the computer to echo back: ``This is an
304724c2 435example of using echo!''
572a0c97 436
219227ea
JW
437Although command verbs are always simple words, like @command{reboot} or
438@command{echo}, arguments may have a wide variety of forms. There are
439textual arguments, numerical arguments---even Lisp arguments.
440Distinguishing these different types of arguments requires special
441typing, for the computer to know exactly what you mean.
572a0c97 442
7d97fbf4 443@node Command arguments
dace60cf 444@section Command arguments
572a0c97 445
219227ea
JW
446Eshell recognizes several different kinds of command arguments:
447
448@enumerate
449@item Strings (also called textual arguments)
450@item Numbers (floating point or integer)
451@item Lisp lists
452@item Lisp symbols
453@item Emacs buffers
454@item Emacs process handles
455@end enumerate
456
1fc0f361 457Most users need to worry only about the first two. The third, Lisp lists,
219227ea
JW
458occur very frequently, but almost always behind the scenes.
459
460Strings are the most common type of argument, and consist of nearly any
461character. Special characters---those used by Eshell
1fc0f361
EZ
462specifically---must be preceded by a backslash (@samp{\}). When in doubt, it
463is safe to add backslashes anywhere and everywhere.
219227ea
JW
464
465Here is a more complicated @command{echo} example:
466
467@example
304724c2 468echo A\ Multi-word\ Argument\ With\ A\ \$\ dollar
219227ea
JW
469@end example
470
471Beyond this, things get a bit more complicated. While not beyond the
472reach of someone wishing to learn, it is definitely beyond the scope of
473this manual to present it all in a simplistic manner. Get comfortable
474with Eshell as a basic command invocation tool, and learn more about the
475commands on your system; then come back when it all sits more familiarly
476on your mind. Have fun!
477
7d97fbf4 478@node Commands
219227ea
JW
479@chapter Commands
480
481@menu
177c0ea7
JB
482* Invocation::
483* Completion::
484* Aliases::
485* History::
486* Scripts::
7d97fbf4 487* Built-ins::
219227ea
JW
488@end menu
489
248ac71c
JW
490Essentially, a command shell is all about invoking commands---and
491everything that entails. So understanding how Eshell invokes commands
492is the key to comprehending how it all works.
493
7d97fbf4 494@node Invocation
219227ea
JW
495@section Invocation
496
248ac71c
JW
497Unlike regular system shells, Eshell never invokes kernel functions
498directly, such as @code{exec(3)}. Instead, it uses the Lisp functions
499available in the Emacs Lisp library. It does this by transforming the
500command you specify into a callable Lisp form.@footnote{To see the Lisp
501form that will be invoked, type: @samp{eshell-parse-command "echo
502hello"}}
503
504This transformation, from the string of text typed at the command
505prompt, to the ultimate invocation of either a Lisp function or external
506command, follows these steps:
507
508@enumerate
509@item Parse the command string into separate arguments.
177c0ea7 510@item
248ac71c
JW
511@end enumerate
512
7d97fbf4 513@node Completion
219227ea
JW
514@section Completion
515
7d97fbf4 516@node Aliases
219227ea
JW
517@section Aliases
518
7d97fbf4 519@node History
219227ea
JW
520@section History
521
7d97fbf4
KG
522Eshell knows a few built-in variables:
523
524@table @code
525
526@item $+
527@vindex $+
528This variable always contains the current working directory.
529
530@item $-
531@vindex $-
532This variable always contains the previous working directory (the
533current working directory from before the last @code{cd} command).
534
535@end table
536
537@node Scripts
219227ea
JW
538@section Scripts
539
540
7d97fbf4
KG
541@node Built-ins
542@section Built-in commands
543
544Here is a list of built-in commands that Eshell knows about:
545
546@table @code
547
548@item cd
549@findex cd
550This command changes the current working directory. Usually, it is
551invoked as @samp{cd foo} where @file{foo} is the new working
552directory. But @code{cd} knows about a few special arguments:
553
554When it receives no argument at all, it changes to the home directory.
555
556Giving the command @samp{cd -} changes back to the previous working
557directory (this is the same as @samp{cd $-}).
558
1ecfdc69
KG
559The command @samp{cd =} shows the directory stack. Each line is
560numbered.
7d97fbf4
KG
561
562With @samp{cd =foo}, Eshell searches the directory stack for a
563directory matching the regular expression @samp{foo} and changes to
564that directory.
565
1ecfdc69
KG
566With @samp{cd -42}, you can access the directory stack by number.
567
7d97fbf4
KG
568@end table
569
570
571@node Arguments
219227ea
JW
572@chapter Arguments
573
574@menu
177c0ea7
JB
575* The Parser::
576* Variables::
577* Substitution::
578* Globbing::
579* Predicates::
219227ea
JW
580@end menu
581
7d97fbf4 582@node The Parser
219227ea
JW
583@section The Parser
584
7d97fbf4 585@node Variables
219227ea
JW
586@section Variables
587
7d97fbf4 588@node Substitution
219227ea
JW
589@section Substitution
590
7d97fbf4 591@node Globbing
219227ea
JW
592@section Globbing
593
7d97fbf4 594@node Predicates
219227ea
JW
595@section Predicates
596
597
7d97fbf4 598@node Input/Output
219227ea
JW
599@chapter Input/Output
600
7d97fbf4 601@node Process control
219227ea
JW
602@chapter Process control
603
604
7d97fbf4 605@node Extension modules
219227ea
JW
606@chapter Extension modules
607
608@menu
177c0ea7
JB
609* Writing a module::
610* Module testing::
611* Directory handling::
612* Key rebinding::
613* Smart scrolling::
614* Terminal emulation::
615* Built-in UNIX commands::
219227ea
JW
616@end menu
617
7d97fbf4 618@node Writing a module
219227ea
JW
619@section Writing a module
620
7d97fbf4 621@node Module testing
219227ea
JW
622@section Module testing
623
7d97fbf4 624@node Directory handling
219227ea
JW
625@section Directory handling
626
7d97fbf4 627@node Key rebinding
219227ea
JW
628@section Key rebinding
629
7d97fbf4 630@node Smart scrolling
219227ea
JW
631@section Smart scrolling
632
7d97fbf4 633@node Terminal emulation
219227ea
JW
634@section Terminal emulation
635
7d97fbf4 636@node Built-in UNIX commands
219227ea
JW
637@section Built-in UNIX commands
638
639
7d97fbf4 640@node Extras and Goodies
219227ea
JW
641@chapter Extras and Goodies
642
7d97fbf4 643@node Bugs and ideas
572a0c97 644@chapter Bugs and ideas
997c7f71
EZ
645@cindex reporting bugs and ideas
646@cindex bugs, how to report them
647@cindex author, how to reach
648@cindex email to the author
572a0c97 649@cindex FAQ
997c7f71 650@cindex problems, list of common
572a0c97
JW
651
652If you find a bug or misfeature, don't hesitate to let me know! Send
997c7f71 653email to @email{johnw@@gnu.org}. Feature requests should also be sent
572a0c97
JW
654there. I prefer discussing one thing at a time. If you find several
655unrelated bugs, please report them separately.
656
657If you have ideas for improvements, or if you have written some
658extensions to this package, I would like to hear from you. I hope you
659find this package useful!
660
661@menu
177c0ea7 662* Known problems::
572a0c97
JW
663@end menu
664
7d97fbf4 665@node Known problems
572a0c97 666@section Known problems
997c7f71
EZ
667@cindex known bugs
668@cindex bugs, known
572a0c97 669
219227ea
JW
670Below is complete list of known problems with Eshell version 2.4.1,
671which is the version included with Emacs 21.1.
572a0c97
JW
672
673@table @asis
ba0dca35
TTN
674@item Documentation incomplete
675
dace60cf
JW
676@item Differentiate between aliases and functions
677
678Allow for a bash-compatible syntax, such as:
679
680@example
681alias arg=blah
dbdc47a3 682function arg () @{ blah $* @}
dace60cf
JW
683@end example
684
685@item @samp{for i in 1 2 3 @{ grep -q a b && *echo has it @} | wc -l} outputs result after prompt
572a0c97
JW
686
687In fact, piping to a process from a looping construct doesn't work in
688general. If I change the call to @code{eshell-copy-handles} in
689@code{eshell-rewrite-for-command} to use @code{eshell-protect}, it seems
690to work, but the output occurs after the prompt is displayed. The whole
691structured command thing is too complicated at present.
692
693@item Error with @command{bc} in @code{eshell-test}
694
695On some XEmacs system, the subprocess interaction test fails
997c7f71 696inexplicably, although @command{bc} works fine at the command prompt.
572a0c97 697
572a0c97
JW
698@item Eshell does not delete @file{*Help*} buffers in XEmacs 21.1.8+
699
700In XEmacs 21.1.8, the @file{*Help*} buffer has been renamed such that
701multiple instances of the @file{*Help*} buffer can exist.
702
703@item Pcomplete sometimes gets stuck
704
997c7f71
EZ
705You press @key{TAB}, but no completions appear, even though the
706directory has matching files. This behavior is rare.
572a0c97
JW
707
708@item @samp{grep python $<rpm -qa>} doesn't work, but using @samp{*grep} does
709
710This happens because the @code{grep} Lisp function returns immediately,
711and then the asynchronous @command{grep} process expects to examine the
712temporary file, which has since been deleted.
713
714@item Problem with C-r repeating text
715
716If the text @emph{before point} reads "./run", and you type @kbd{C-r r u
717n}, it will repeat the line for every character typed.
718
719@item Backspace doesn't scroll back after continuing (in smart mode)
720
721Hitting space during a process invocation, such as @command{make}, will
722cause it to track the bottom of the output; but backspace no longer
723scrolls back.
724
725@item It's not possible to fully @code{unload-feature} Eshell
726
727@item Menu support was removed, but never put back
728
729@item Using C-p and C-n with rebind gets into a locked state
730
28665d46 731This happened a few times in Emacs 21, but has been unreproducible
572a0c97
JW
732since.
733
734@item If an interactive process is currently running, @kbd{M-!} doesn't work
735
736@item Use a timer instead of @code{sleep-for} when killing child processes
737
738@item Piping to a Lisp function is not supported
739
740Make it so that the Lisp command on the right of the pipe is repeatedly
741called with the input strings as arguments. This will require changing
dace60cf 742@code{eshell-do-pipeline} to handle non-process targets.
572a0c97
JW
743
744@item Input redirection is not supported
745
dace60cf
JW
746See the above entry.
747
219227ea 748@item Problem running @command{less} without arguments on Windows
dace60cf
JW
749
750The result in the Eshell buffer is:
751
752@example
753Spawning child process: invalid argument
754@end example
755
756Also a new @command{less} buffer was created with nothing in it@dots{}
757(presumably this holds the output of @command{less}).
758
759If @command{less.exe} is invoked from the Eshell command line, the
760expected output is written to the buffer.
761
bbd9b8db
EZ
762Note that this happens on NT-Emacs 20.6.1 on Windows 2000. The term.el
763package and the supplied shell both use the @command{cmdproxy} program
764for running shells.
dace60cf
JW
765
766@item Implement @samp{-r}, @samp{-n} and @samp{-s} switches for @command{cp}
767
768@item Make @kbd{M-5 M-x eshell} switch to ``*eshell<5>*'', creating if need be
769
bbd9b8db 770@item @samp{mv @var{dir} @var{file}.tar} does not remove directories
dace60cf
JW
771
772This is because the tar option --remove-files doesn't do so. Should it
773be Eshell's job?
774
775@item Bind @code{standard-output} and @code{standard-error}
776
777This would be so that if a Lisp function calls @code{print}, everything
778will happen as it should (albeit slowly).
779
780@item When an extension module fails to load, @samp{cd /} gives a Lisp error
781
782@item If a globbing pattern returns one match, should it be a list?
783
784@item Make sure syntax table is correct in Eshell mode
785
786So that @kbd{M-DEL} acts in a predictable manner, etc.
787
788@item Allow all Eshell buffers to share the same history and list-dir
789
790@item There is a problem with script commands that output to @file{/dev/null}
791
792If a script file, somewhere in the middle, uses @samp{> /dev/null},
793output from all subsequent commands is swallowed.
794
795@item Split up parsing of text after @samp{$} in @file{esh-var.el}
796
797Make it similar to the way that @file{esh-arg.el} is structured.
798Then add parsing of @samp{$[?\n]}.
799
800@item After pressing @kbd{M-RET}, redisplay before running the next command
801
802@item Argument predicates and modifiers should work anywhere in a path
803
804@example
805/usr/local/src/editors/vim $ vi **/CVS(/)/Root(.)
806Invalid regexp: "Unmatched ( or \\("
807@end example
808
809With @command{zsh}, the glob above expands to all files named
810@file{Root} in directories named @file{CVS}.
811
dbdc47a3 812@item Typing @samp{echo $@{locate locate@}/bin<TAB>} results in a Lisp error
dace60cf
JW
813
814Perhaps it should interpolate all permutations, and make that the
815globbing result, since otherwise hitting return here will result in
816``(list of filenames)/bin'', which is never valuable. Thus, one could
dbdc47a3 817@command{cat} only C backup files by using @samp{ls $@{identity *.c@}~}.
dace60cf
JW
818In that case, having an alias command name @command{glob} for
819@command{identity} would be useful.
820
dace60cf
JW
821@item Once symbolic mode is supported for @command{umask}, implement @command{chmod} in Lisp
822
823@item Create @code{eshell-expand-file-name}
824
825This would use a data table to transform things such as @samp{~+},
826@samp{...}, etc.
827
828@item Abstract @file{em-smart.el} into @file{smart-scroll.el}
829
830It only really needs: to be hooked onto the output filter and the
831pre-command hook, and to have the input-end and input-start markers.
304724c2 832And to know whether the last output group was ``successful.''
dace60cf
JW
833
834@item Allow for fully persisting the state of Eshell
835
836This would include: variables, history, buffer, input, dir stack, etc.
837
838@item Implement D as an argument predicate
839
840It means that files beginning with a dot should be included in the
841glob match.
842
843@item A comma in a predicate list should mean OR
844
845At the moment, this is not supported.
846
847@item Error if a glob doesn't expand due to a predicate
848
849An error should be generated only if @code{eshell-error-if-no-glob} is
850non-nil.
851
852@item @samp{(+ RET SPC TAB} does not cause @code{indent-according-to-mode} to occur
853
854@item Create @code{eshell-auto-accumulate-list}
855
856This is a list of commands for which, if the user presses @kbd{RET}, the
857text is staged as the next Eshell command, rather than being sent to the
858current interactive process.
859
860@item Display file and line number if an error occurs in a script
861
862@item @command{wait} doesn't work with process ids at the moment
863
864@item Enable the direct-to-process input code in @file{em-term.el}
865
866@item Problem with repeating @samp{echo $@{find /tmp@}}
867
868With smart display active, if @kbd{RET} is held down, after a while it
869can't keep up anymore and starts outputting blank lines. It only
870happens if an asynchronous process is involved@dots{}
871
872I think the problem is that @code{eshell-send-input} is resetting the
873input target location, so that if the asynchronous process is not done
874by the time the next @kbd{RET} is received, the input processor thinks
875that the input is meant for the process; which, when smart display is
876enabled, will be the text of the last command line! That is a bug in
877itself.
878
879In holding down @kbd{RET} while an asynchronous process is running,
880there will be a point in between termination of the process, and the
881running of @code{eshell-post-command-hook}, which would cause
882@code{eshell-send-input} to call @code{eshell-copy-old-input}, and then
883process that text as a command to be run after the process. Perhaps
884there should be a way of killing pending input between the death of the
885process, and the @code{post-command-hook}.
886
887@item Allow for a more aggressive smart display mode
888
889Perhaps toggled by a command, that makes each output block a smart
890display block.
891
892@item Create more meta variables
893
894@table @samp
895@item $!
896The reason for the failure of the last disk command, or the text of the
897last Lisp error.
898
899@item $=
900A special associate array, which can take references of the form
901@samp{$=[REGEXP]}. It indexes into the directory ring.
902@end table
903
904@item Eshell scripts can't execute in the background
905
bbd9b8db 906@item Support zsh's ``Parameter Expansion'' syntax, i.e. @samp{$@{@var{name}:-@var{val}@}}
dace60cf
JW
907
908@item Write an @command{info} alias that can take arguments
909
910So that the user can enter @samp{info chmod}, for example.
911
912@item Create a mode @code{eshell-browse}
913
914It would treat the Eshell buffer as a outline. Collapsing the outline
915hides all of the output text. Collapsing again would show only the
916first command run in each directory
917
918@item Allow other revisions of a file to be referenced using @samp{file@{rev@}}
919
920This would be expanded by @code{eshell-expand-file-name} (see above).
921
922@item Print ``You have new mail'' when the ``Mail'' icon is turned on
923
924@item Implement @kbd{M-|} for Eshell
925
926@item Implement input redirection
927
928If it's a Lisp function, input redirection implies @command{xargs} (in a
929way@dots{}). If input redirection is added, also update the
930@code{file-name-quote-list}, and the delimiter list.
931
bbd9b8db 932@item Allow @samp{#<@var{word} @var{arg}>} as a generic syntax
dace60cf
JW
933
934With the handling of @emph{word} specified by an
935@code{eshell-special-alist}.
936
219227ea 937@item In @code{eshell-veal-using-options}, allow a @code{:complete} tag
dace60cf
JW
938
939It would be used to provide completion rules for that command. Then the
940macro will automagically define the completion function.
941
942@item For @code{eshell-command-on-region}, apply redirections to the result
943
944So that @samp{+ > 'blah} would cause the result of the @code{+} (using
945input from the current region) to be inserting into the symbol
946@code{blah}.
947
948If an external command is being invoked, the input is sent as standard
949input, as if a @samp{cat <region> |} had been invoked.
950
951If a Lisp command, or an alias, is invoked, then if the line has no
952newline characters, it is divided by whitespace and passed as arguments
953to the Lisp function. Otherwise, it is divided at the newline
954characters. Thus, invoking @code{+} on a series of numbers will add
955them; @code{min} would display the smallest figure, etc.
956
957@item Write @code{eshell-script-mode} as a minor mode
958
959It would provide syntax, abbrev, highlighting and indenting support like
960@code{emacs-lisp-mode} and @code{shell-mode}.
961
962@item In the history mechanism, finish the @command{bash}-style support
963
964This means @samp{!n}, @samp{!#}, @samp{!:%}, and @samp{!:1-} as separate
965from @samp{!:1*}.
966
967@item Support the -n command line option for @command{history}
968
969@item Implement @command{fc} in Lisp
970
971@item Specifying a frame as a redirection target should imply the currently active window's buffer
972
bbd9b8db 973@item Implement @samp{>@var{func-or-func-list}}
dace60cf
JW
974
975This would allow for an ``output translators'', that take a function to
976modify output with, and a target. Devise a syntax that works well with
28665d46 977pipes, and can accommodate multiple functions (i.e., @samp{>'(upcase
dace60cf
JW
978regexp-quote)} or @samp{>'upcase}).
979
980@item Allow Eshell to read/write to/from standard input and output
981
982This would be optional, rather than always using the Eshell buffer.
983This would allow it to be run from the command line (perhaps).
984
985@item Write a @command{help} command
986
bbd9b8db
EZ
987It would call subcommands with @option{--help}, or @option{-h} or
988@option{/?}, as appropriate.
dace60cf
JW
989
990@item Implement @command{stty} in Lisp
991
bbd9b8db 992@item Support @command{rc}'s matching operator, e.g. @samp{~ (@var{list}) @var{regexp}}
dace60cf
JW
993
994@item Implement @command{bg} and @command{fg} as editors of @code{eshell-process-list}
995
996Using @command{bg} on a process that is already in the background does
997nothing. Specifying redirection targets replaces (or adds) to the list
998current being used.
999
1000@item Have @command{jobs} print only the processes for the current shell
1001
1002@item How can Eshell learn if a background process has requested input?
1003
1004@item Support @samp{2>&1} and @samp{>&} and @samp{2>} and @samp{|&}
1005
1006The syntax table for parsing these should be customizable, such that the
1007user could change it to use rc syntax: @samp{>[2=1]}.
1008
1009@item Allow @samp{$_[-1]}, which would indicate the last element of the array
1010
1011@item Make @samp{$x[*]} equal to listing out the full contents of @samp{x}
1012
1013Return them as a list, so that @samp{$_[*]} is all the arguments of the
1014last command.
1015
1016@item Copy ANSI code handling from @file{term.el} into @file{em-term.el}
1017
1018Make it possible for the user to send char-by-char to the underlying
1019process. Ultimately, I should be able to move away from using term.el
1020altogether, since everything but the ANSI code handling is already part
bbd9b8db
EZ
1021of Eshell. Then, things would work correctly on MS-Windows as well
1022(which doesn't have @file{/bin/sh}, although @file{term.el} tries to use
1023it).
dace60cf
JW
1024
1025@item Make the shell spawning commands be visual
1026
1027That is, make (@command{su}, @command{bash}, @command{telnet},
1028@command{rlogin}, @command{rsh}, etc.) be part of
1029@code{eshell-visual-commands}. The only exception is if the shell is
1030being used to invoke a single command. Then, the behavior should be
1031based on what that command is.
1032
bbd9b8db 1033@item Create a smart viewing command named @command{open}
dace60cf
JW
1034
1035This would search for some way to open its argument (similar to opening
1036a file in the Windows Explorer).
1037
1038@item Alias @command{read} to be the same as @command{open}, only read-only
1039
1040@item Write a @command{tail} command which uses @code{view-file}
1041
1042It would move point to the end of the buffer, and then turns on
1043auto-revert mode in that buffer at frequent intervals---and a
1044@command{head} alias which assums an upper limit of
1045@code{eshell-maximum-line-length} characters per line.
1046
1047@item Make @command{dgrep} load @code{dired}, mark everything, then invoke @code{dired-do-search}
1048
219227ea 1049@item Write mesh.c
dace60cf
JW
1050
1051This would run Emacs with the appropriate arguments to invoke Eshell
1052only. That way, it could be listed as a login shell.
1053
1054@item Use an intangible @code{PS2} string for multi-line input prompts
1055
1056@item Auto-detect when a command is visual, by checking @code{TERMCAP} usage
1057
1058@item The first keypress after @kbd{M-x watson} triggers `eshell-send-input'
1059
1060@item Make @kbd{/} electric
1061
1062So that it automatically expands and corrects pathnames. Or make
1063pathname completion for Pcomplete auto-expand @samp{/u/i/std<TAB>} to
1064@samp{/usr/include/std<TAB>}.
1065
1066@item Write the @command{pushd} stack to disk along with @code{last-dir-ring}
1067
1068@item Add options to @code{eshell/cat} which would allow it to sort and uniq
1069
1070@item Implement @command{wc} in Lisp
1071
1072Add support for counting sentences, paragraphs, pages, etc.
1073
1074@item Once piping is added, implement @command{sort} and @command{uniq} in Lisp
1075
1076@item Implement @command{touch} in Lisp
1077
1078@item Implement @command{comm} in Lisp
1079
1080@item Implement an @command{epatch} command in Lisp
1081
1082This would call @code{ediff-patch-file}, or @code{ediff-patch-buffer},
1083depending on its argument.
1084
1085@item Have an option such that @samp{ls -l} generates a dired buffer
1086
1087@item Write a version of @command{xargs} based on command rewriting
1088
1089That is, @samp{find X | xargs Y} would be indicated using @samp{Y
1090$@{find X@}}. Maybe @code{eshell-do-pipelines} could be changed to
1091perform this on-thy-fly rewriting.
1092
1093@item Write an alias for @command{less} that brings up a @code{view-mode} buffer
1094
bbd9b8db 1095Such that the user can press @key{SPC} and @key{DEL}, and then @key{q}
177c0ea7 1096to return to Eshell. It would be equivalent to:
dace60cf
JW
1097@samp{X > #<buffer Y>; view-buffer #<buffer Y>}.
1098
1099@item Make @code{eshell-mode} as much a full citizen as @code{shell-mode}
1100
1101Everywhere in Emacs where @code{shell-mode} is specially noticed, add
1102@code{eshell-mode} there.
1103
1104@item Permit the umask to be selectively set on a @command{cp} target
1105
1106@item Problem using @kbd{M-x eshell} after using @code{eshell-command}
1107
1108If the first thing that I do after entering Emacs is to run
1109@code{eshell-command} and invoke @command{ls}, and then use @kbd{M-x
1110eshell}, it doesn't display anything.
1111
1112@item @kbd{M-RET} during a long command (using smart display) doesn't work
1113
1114Since it keeps the cursor up where the command was invoked.
1115
572a0c97
JW
1116@end table
1117
7d97fbf4 1118@node Concept Index
572a0c97
JW
1119@unnumbered Concept Index
1120
1121@printindex cp
1122
7d97fbf4 1123@node Function and Variable Index
997c7f71
EZ
1124@unnumbered Function and Variable Index
1125
1126@printindex fn
1127
7d97fbf4 1128@node Key Index
572a0c97
JW
1129@unnumbered Key Index
1130
1131@printindex ky
572a0c97 1132@bye
ab5796a9
MB
1133
1134@ignore
1135 arch-tag: 776409ba-cb15-42b9-b2b6-d2bdc7ebad01
1136@end ignore