* Re: Any good stuff for emacs study ? [not found] <mailman.1713.1147402286.9609.help-gnu-emacs@gnu.org> @ 2006-05-12 3:08 ` Pascal Bourguignon 2006-05-12 14:49 ` Drew Adams 2006-05-12 8:24 ` Bastien 2006-05-13 0:02 ` Gary Wessle 2 siblings, 1 reply; 10+ messages in thread From: Pascal Bourguignon @ 2006-05-12 3:08 UTC (permalink / raw) Bo Yang <struggleyb@gmail.com> writes: > I want to use emacs as my first editor because I heard that it is very > flexible > and can be used to edit many lauguage as well as be used as mail client and > many many others . > But the manual at gnu is too long to read completely as a tutorial , and > is there > any good book or manual to begin with ? - Launch emacs. - Type C-h t (that means, type: control-h, then t). - Read the tutorial; it's only 840 lines. - Use emacs! -- __Pascal Bourguignon__ http://www.informatimago.com/ -----BEGIN GEEK CODE BLOCK----- Version: 3.12 GCS d? s++:++ a+ C+++ UL++++ P--- L+++ E+++ W++ N+++ o-- K- w--- O- M++ V PS PE++ Y++ PGP t+ 5+ X++ R !tv b+++ DI++++ D++ G e+++ h+ r-- z? ------END GEEK CODE BLOCK------ ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: Any good stuff for emacs study ? 2006-05-12 3:08 ` Any good stuff for emacs study ? Pascal Bourguignon @ 2006-05-12 14:49 ` Drew Adams 2006-05-13 16:20 ` Bo Yang 0 siblings, 1 reply; 10+ messages in thread From: Drew Adams @ 2006-05-12 14:49 UTC (permalink / raw) > But the manual at gnu is too long to read completely as a > tutorial, and is there any good book or manual to begin with? - Launch emacs. - Type C-h t (that means, type: control-h, then t). - Read the tutorial; it's only 840 lines. - Use emacs! Others have also recommended the Emacs Wiki and the Emacs manual. I would point out that the place to start on the wiki is here: http://www.emacswiki.org/cgi-bin/wiki/EmacsNewbie. That page will get you started and it can point you to other learning resources (e.g. books) as well. Also, (like any good manual) the Emacs manual has the most basic topics near the beginning, and they are usually identified as such. The most important thing to know about the Emacs manual is that it is always available, with easy browsing, searching, and index lookup. Use `C-h i' to access it (choose Emacs manual in the list of manuals). Use `q' to quit, then `C-h i' again later (in the same Emacs session) to pick up where you last left off. Emacs help is also always available - see #3 below. Here's the recipe for learning: 1. Start with the Emacs tutorial. The post above should have said "use" the tutorial, not "read" it. It walks you through learning Emacs by using it. 2. Learn how to access the Emacs manual and how to look things up in it, starting with `i' as Eli mentioned. 3. Use Emacs, and while you use it ask it! Get to know Emacs help commands: `C-h k', `C-h f', `C-h v', `C-h m', `C-h a' -- use `C-h h' to see them all. Examples: 1) You want to find a command that deletes a line, so you try `C-h a line' to see all commands with "line" in their name. 2) You want to know what hitting a given sequences of keys will do, so you try `C-h k' then type the key sequence. 4. Don't forget the wiki. People like you wrote it to help people like you. And you can contribute (questions, experiences, suggestions...). Bottom line: You can be doing amazing stuff in a short time, but you can also spend a lifetime or two learning more - Emacs is unlimited, but don't be discouraged by the incredible amount of stuff you can learn. Many Emacs learners (like myself) are Emacs addicts - they just like learning new things and sharing them with others. That does not mean that you must master a zillion complexities before you can be productive with Emacs. You'll be productive within a few minutes. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Any good stuff for emacs study ? 2006-05-12 14:49 ` Drew Adams @ 2006-05-13 16:20 ` Bo Yang 2006-05-12 16:35 ` Drew Adams 0 siblings, 1 reply; 10+ messages in thread From: Bo Yang @ 2006-05-13 16:20 UTC (permalink / raw) Cc: help-gnu-emacs Drew Adams 写道: > > But the manual at gnu is too long to read completely as a > > tutorial, and is there any good book or manual to begin with? > > - Launch emacs. > - Type C-h t (that means, type: control-h, then t). > - Read the tutorial; it's only 840 lines. > - Use emacs! > > Others have also recommended the Emacs Wiki and the Emacs manual. I would > point out that the place to start on the wiki is here: > http://www.emacswiki.org/cgi-bin/wiki/EmacsNewbie. That page will get you > started and it can point you to other learning resources (e.g. books) as > well. Also, (like any good manual) the Emacs manual has the most basic > topics near the beginning, and they are usually identified as such. > > The most important thing to know about the Emacs manual is that it is always > available, with easy browsing, searching, and index lookup. Use `C-h i' to > access it (choose Emacs manual in the list of manuals). Use `q' to quit, > then `C-h i' again later (in the same Emacs session) to pick up where you > last left off. > > Emacs help is also always available - see #3 below. > > Here's the recipe for learning: > > 1. Start with the Emacs tutorial. The post above should have said "use" the > tutorial, not "read" it. It walks you through learning Emacs by using it. > > 2. Learn how to access the Emacs manual and how to look things up in it, > starting with `i' as Eli mentioned. > > 3. Use Emacs, and while you use it ask it! Get to know Emacs help commands: > `C-h k', `C-h f', `C-h v', `C-h m', `C-h a' -- use `C-h h' to see them all. > Examples: 1) You want to find a command that deletes a line, so you try `C-h > a line' to see all commands with "line" in their name. 2) You want to know > what hitting a given sequences of keys will do, so you try `C-h k' then type > the key sequence. > > 4. Don't forget the wiki. People like you wrote it to help people like you. > And you can contribute (questions, experiences, suggestions...). > > > Bottom line: You can be doing amazing stuff in a short time, but you can > also spend a lifetime or two learning more - Emacs is unlimited, but don't > be discouraged by the incredible amount of stuff you can learn. > > Many Emacs learners (like myself) are Emacs addicts - they just like > learning new things and sharing them with others. That does not mean that > you must master a zillion complexities before you can be productive with > Emacs. You'll be productive within a few minutes. > > > > Thanks for all your replies , it is greatly appriciate ! I think I know where I can begin with Emacs ! Thanks again ! > _______________________________________________ > help-gnu-emacs mailing list > help-gnu-emacs@gnu.org > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs > > ^ permalink raw reply [flat|nested] 10+ messages in thread
* RE: Any good stuff for emacs study ? 2006-05-13 16:20 ` Bo Yang @ 2006-05-12 16:35 ` Drew Adams 0 siblings, 0 replies; 10+ messages in thread From: Drew Adams @ 2006-05-12 16:35 UTC (permalink / raw) Thanks for all your replies , it is greatly appriciate ! I think I know where I can begin with Emacs ! You're welcome. Another tip, for posting to mailing lists: Include just enough of a message you reply to to help readers understand the context. In particular, unless it is needed for clarity, avoid copying a long message and adding just a line or two below it. Thanks. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Any good stuff for emacs study ? [not found] <mailman.1713.1147402286.9609.help-gnu-emacs@gnu.org> 2006-05-12 3:08 ` Any good stuff for emacs study ? Pascal Bourguignon @ 2006-05-12 8:24 ` Bastien 2006-05-12 9:53 ` Pawel 2006-05-12 11:17 ` Eli Zaretskii 2006-05-13 0:02 ` Gary Wessle 2 siblings, 2 replies; 10+ messages in thread From: Bastien @ 2006-05-12 8:24 UTC (permalink / raw) Bo Yang <struggleyb@gmail.com> writes: > I want to use emacs as my first editor because I heard that it is very > flexible and can be used to edit many lauguage as well as be used as > mail client and many many others . But the manual at gnu is too long to > read completely as a tutorial , and is there any good book or manual to > begin with ? Don't miss this huge ressource : <http://www.emacswiki.org> -- Bastien ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Any good stuff for emacs study ? 2006-05-12 8:24 ` Bastien @ 2006-05-12 9:53 ` Pawel 2006-05-12 11:17 ` Eli Zaretskii 1 sibling, 0 replies; 10+ messages in thread From: Pawel @ 2006-05-12 9:53 UTC (permalink / raw) Cc: help-gnu-emacs Bastien writes: > Bo Yang <struggleyb@gmail.com> writes: > > > I want to use emacs as my first editor because I heard that it is very > > flexible and can be used to edit many lauguage as well as be used as > > mail client and many many others . But the manual at gnu is too long to > > read completely as a tutorial , and is there any good book or manual to > > begin with ? > > Don't miss this huge ressource : <http://www.emacswiki.org> > > -- > Bastien > _______________________________________________ > help-gnu-emacs mailing list > help-gnu-emacs@gnu.org > http://lists.gnu.org/mailman/listinfo/help-gnu-emacs > Then, if You play a while with it, try elisp, which is a language emacs was written in. There is great manual (very easy to understand) for that: http://www.gnu.org/software/emacs/emacs-lisp-intro/html_node/index.html I read it and I must say that it opens even larger door to that what is meant by "flexible". ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Any good stuff for emacs study ? 2006-05-12 8:24 ` Bastien 2006-05-12 9:53 ` Pawel @ 2006-05-12 11:17 ` Eli Zaretskii 1 sibling, 0 replies; 10+ messages in thread From: Eli Zaretskii @ 2006-05-12 11:17 UTC (permalink / raw) > From: Bastien <bastien@xxx.fr> > Date: Fri, 12 May 2006 10:24:12 +0200 > > Don't miss this huge ressource : <http://www.emacswiki.org> And don't miss the huge resource that is the user manual. While reading it in its entirety is not recommended, looking up subject via the `i' command is _the_ most efficient way of finding information about various Emacs features. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: Any good stuff for emacs study ? [not found] <mailman.1713.1147402286.9609.help-gnu-emacs@gnu.org> 2006-05-12 3:08 ` Any good stuff for emacs study ? Pascal Bourguignon 2006-05-12 8:24 ` Bastien @ 2006-05-13 0:02 ` Gary Wessle 2 siblings, 0 replies; 10+ messages in thread From: Gary Wessle @ 2006-05-13 0:02 UTC (permalink / raw) Bo Yang <struggleyb@gmail.com> writes: > I want to use emacs as my first editor because I heard that it is very > flexible > and can be used to edit many lauguage as well as be used as mail client and > many many others . > But the manual at gnu is too long to read completely as a tutorial , and > is there > any good book or manual to begin with ? > > Thanks in advance ! I was in your position not too long ago, use Learning GNU Emacs by Debra Cameron, James Elliott, "O'Reilly ISBN 0596006489" third edition. ^ permalink raw reply [flat|nested] 10+ messages in thread
* Any good stuff for emacs study ? @ 2006-05-13 2:51 Bo Yang 0 siblings, 0 replies; 10+ messages in thread From: Bo Yang @ 2006-05-13 2:51 UTC (permalink / raw) I want to use emacs as my first editor because I heard that it is very flexible and can be used to edit many lauguage as well as be used as mail client and many many others . But the manual at gnu is too long to read completely as a tutorial , and is there any good book or manual to begin with ? Thanks in advance ! ^ permalink raw reply [flat|nested] 10+ messages in thread
[parent not found: <mailman.1730.1147445405.9609.help-gnu-emacs@gnu.org>]
* Re: Any good stuff for emacs study ? [not found] <mailman.1730.1147445405.9609.help-gnu-emacs@gnu.org> @ 2006-05-13 14:40 ` Fredrik Bulow 0 siblings, 0 replies; 10+ messages in thread From: Fredrik Bulow @ 2006-05-13 14:40 UTC (permalink / raw) "Drew Adams" <drew.adams@oracle.com> writes: > 1. Start with the Emacs tutorial. The post above should have said "use" the > tutorial, not "read" it. It walks you through learning Emacs by using it. > > 2. Learn how to access the Emacs manual and how to look things up in it, > starting with `i' as Eli mentioned. > > 3. Use Emacs, and while you use it ask it! Get to know Emacs help commands: > `C-h k', `C-h f', `C-h v', `C-h m', `C-h a' -- use `C-h h' to see them all. > Examples: 1) You want to find a command that deletes a line, so you try `C-h > a line' to see all commands with "line" in their name. 2) You want to know > what hitting a given sequences of keys will do, so you try `C-h k' then type > the key sequence. > > 4. Don't forget the wiki. People like you wrote it to help people like you. > And you can contribute (questions, experiences, suggestions...). ... and when you find something somewhere that you think is useful, bookmark it by using C-x r m. You can list bookmarks with C-x r l or jump to a bookmark with C-x r b. Remember that you can search all manuals using the s key (not C-s but just s). This search goes through an entire manual, not just the page you're looking at. /Fredrik ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2006-05-13 16:20 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <mailman.1713.1147402286.9609.help-gnu-emacs@gnu.org> 2006-05-12 3:08 ` Any good stuff for emacs study ? Pascal Bourguignon 2006-05-12 14:49 ` Drew Adams 2006-05-13 16:20 ` Bo Yang 2006-05-12 16:35 ` Drew Adams 2006-05-12 8:24 ` Bastien 2006-05-12 9:53 ` Pawel 2006-05-12 11:17 ` Eli Zaretskii 2006-05-13 0:02 ` Gary Wessle 2006-05-13 2:51 Bo Yang [not found] <mailman.1730.1147445405.9609.help-gnu-emacs@gnu.org> 2006-05-13 14:40 ` Fredrik Bulow
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).