Difference between revisions of "Learning Resources"

From WikEmacs
Jump to navigation Jump to search
 
(38 intermediate revisions by 23 users not shown)
Line 1: Line 1:
== Emacs Help ==
 
 
Emacs is described as "self-documenting". An extensive help system is available using various keystrokes starting with `C-h` (that is, Control-H). To choose from the full list, type `C-h C-h`.
 
 
== Emacs Tutorial - Beginners Mandatory ==
 
 
Emacs ships with a tutorial. Just type `C-h t`.
 
It teaches you all the essentials you need to know for starting emacs.
 
 
Intermediate to advanced users can browse in-built help with `C-h r`.
 
 
 
== Books ==
 
== Books ==
  
Line 20: Line 9:
 
* '''Casting Spells in Lisp (Emacs Lisp version)''' by Conrad Barski M.D.  
 
* '''Casting Spells in Lisp (Emacs Lisp version)''' by Conrad Barski M.D.  
  
Written originally to teach Lisp, the book has been modified for [http://www.gnu.org/software/emacs/emacs-lisp-intro/ Emacs Lisp]. The presentation is in a form between a comic book and a manual that educates while you have fun. The best of both worlds.
+
Written originally to teach some other flavor of Lisp, the book has been modified for [http://www.gnu.org/software/emacs/emacs-lisp-intro/ Emacs Lisp]. The presentation is in a form between a comic book and a manual that educates while you have fun. The best of both worlds.
  
 
It can be read online [http://www.lisperati.com/casting-spels-emacs/html/casting-spels-emacs-1.html here].
 
It can be read online [http://www.lisperati.com/casting-spels-emacs/html/casting-spels-emacs-1.html here].
  
 
== Tutorials ==
 
== Tutorials ==
 +
 +
* [http://david.rothlis.net/emacs/howtolearn.html How to Learn Emacs]
  
 
* [http://xahlee.org/emacs/elisp.html Xah Emacs Lisp Tutorial] - This concise and concrete tutorial focus on practical needs with examples.
 
* [http://xahlee.org/emacs/elisp.html Xah Emacs Lisp Tutorial] - This concise and concrete tutorial focus on practical needs with examples.
  
 
* [http://xahlee.org/emacs/emacs.html  Xah Emacs Tutorial]
 
* [http://xahlee.org/emacs/emacs.html  Xah Emacs Tutorial]
 +
 +
* [http://tuhdo.github.io/emacs-tutor.html Emacs Mini Manual]
  
 
== Screencasts ==
 
== Screencasts ==
  
* YouTube Channel: [http://www.youtube.com/user/rpdillon?feature=watch Hacks Emacs]
+
* [http://emacsmovies.org/ Emacs Movies] new screencast, promises to come out with a book also
 +
* [http://www.youtube.com/user/rpdillon?feature=watch Hacks Emacs](YouTube Channel)
 
* [http://emacsrocks.com/ Emacs Rocks!]
 
* [http://emacsrocks.com/ Emacs Rocks!]
* [http://emacsmovies.org Emacs Movies]
+
* [https://peepcode.com/products/meet-emacs Peepcode's Meet Emacs](commercial)
  
 
== Blogs ==
 
== Blogs ==
Line 41: Line 35:
 
* [http://www.masteringemacs.org/ Mastering Emacs]
 
* [http://www.masteringemacs.org/ Mastering Emacs]
 
* [http://emacsworld.blogspot.com/ Got Emacs?]
 
* [http://emacsworld.blogspot.com/ Got Emacs?]
* [http://xahlee.org/emacs/blog.html Xah Emacs Blog] - Tips and tricks for emacs and emacs lisp
+
* [http://xahlee.org/emacs/blog.html Xah Emacs Blog] - Tips and tricks for Emacs and Emacs Lisp
 +
* [http://planet.emacsen.org/ Planet Emacsen] - blogroll, includes probably all above
 +
 
 +
== Articles ==
 +
 
 +
* [http://batsov.com/articles/2011/11/30/the-ultimate-collection-of-emacs-resources/ The Ultimate Collection of Emacs Resources]
 +
 
 +
== Twitter ==
  
* [http://planet.emacsen.org/ Planet Emacsen] - blogroll, includes probably all above
+
There are many Twitter accounts dedicated to sharing news and tips about Emacs. One can benefit a lot by following them:
 +
 
 +
* [http://twitter.com/#!/emacs_knight @emacs_knight]
 +
* [http://twitter.com/#!/learnemacs @learnemacs]
 +
* [http://twitter.com/#!/dotemacs @dotemacs]
 +
* [http://twitter.com/#!/dotemax @dotemax]
  
 
== Useful Extensions ==
 
== Useful Extensions ==
  
Before you install a lot of extensions, explore your Emacs distribution! Try 'C-h p' (find-emacs-packages) to browse the available packages by category.
+
Before you install a lot of extensions, explore your Emacs distribution! Try {{Keys|C-h p}} ({{Command|find-emacs-packages}}) to browse the available packages by category.
  
 
== Configuring Emacs ==
 
== Configuring Emacs ==
[https://sites.google.com/site/steveyegge2/my-dot-emacs-file This] blog post is a great introduction to setting up your .emacs and emacs dir the "professional way"!
+
* [https://sites.google.com/site/steveyegge2/my-dot-emacs-file This] blog post is a great introduction to setting up your init.el (formerly .emacs) and your emacs directory the "professional way"!
 +
* [http://devblog.avdi.org/category/emacs-reboot/ Avdi Grimm]'s series of blog posts on how to organise Emacs configuration files.
  
[[Category:Getting started]]
+
[[Category:Beginner]]

Latest revision as of 21:00, 13 June 2014

Books

  • Learning GNU Emacs, 2nd Edition by Debra Cameron, Bill Rosenblatt, Eric S. Raymond

Much better than the current, 3rd edition. The first half of the book walks you through the fundamental steps, as a tutorial.

Can be obtained from O'Reilly http://shop.oreilly.com/product/9781565921528.do

  • Casting Spells in Lisp (Emacs Lisp version) by Conrad Barski M.D.

Written originally to teach some other flavor of Lisp, the book has been modified for Emacs Lisp. The presentation is in a form between a comic book and a manual that educates while you have fun. The best of both worlds.

It can be read online here.

Tutorials

Screencasts

Blogs

Articles

Twitter

There are many Twitter accounts dedicated to sharing news and tips about Emacs. One can benefit a lot by following them:

Useful Extensions

Before you install a lot of extensions, explore your Emacs distribution! Try [C-h p] (M-x find-emacs-packages) to browse the available packages by category.

Configuring Emacs

  • This blog post is a great introduction to setting up your init.el (formerly .emacs) and your emacs directory the "professional way"!
  • Avdi Grimm's series of blog posts on how to organise Emacs configuration files.