]> code.delx.au - gnu-emacs-elpa/commitdiff
Updated README.mdown's installation instructions
authorJoão Távora <joaotavora@gmail.com>
Wed, 14 Dec 2011 10:49:44 +0000 (10:49 +0000)
committerJoão Távora <joaotavora@gmail.com>
Wed, 14 Dec 2011 10:49:44 +0000 (10:49 +0000)
README.mdown

index 4f385dc388bf7ee8d04d4016677c837816c09122..ba9585f02ff160e96584471c5b1e801146723c50 100755 (executable)
@@ -16,44 +16,27 @@ SQL, LaTeX, HTML, CSS and more. The snippet syntax is inspired from
 [youtube-demo]: http://www.youtube.com/watch?v=76Ygeg9miao
 [high-res-demo]: http://yasnippet.googlecode.com/files/yas_demo.avi 
 
-# Install with yasnippet-bundle.el
-
-To quickly tryout YASnippet, download the simpler "bundle" version. 
-If you plan to modify the bundled templates and/or build your own, 
-download the "normal" package.
-* Download `yasnippet-bundle` from the downloads section.
-
-* You'll get a file named `yasnippet-bundle.el`, put it in
-  `~/.emacs.d/plugins/` (create that directory if not exists).
-
-* Open the file in Emacs, and type `M-x eval-buffer RET`.
-
-That's it. Now open any file, you'll see a menu "YASnippet".  You can
-pull down the menu to insert a template. Or, you can type a
-pre-defined abbrev and press TAB to expand it!
-To have Emacs load YASnippet automatically when it starts, put the
-following in your ~/.emacs file:
-     
-    (add-to-list 'load-path
-                 "~/.emacs.d/plugins")
-    (require 'yasnippet-bundle)
+# Install the most recent version
 
+Clone this repository somewhere
 
-# Install
+    $ cd ~/.emacs.d/plugins 
+    $ git clone https://github.com/capitaomorte/yasnippet
 
-To install the normal archive, download and unpack the latest
-`yasnippet-x.y.z.tar.bz2`. You'll get a directory named
-`yasnippet-x.y.z`, put it in some `~/.emacs.d/plugins` dir and add the
-following in your `.emacs` file:
+Add the following in your `.emacs` file:
 
     (add-to-list 'load-path
-                  "~/.emacs.d/plugins/yasnippet-x.y.z")
+                  "~/.emacs.d/plugins/yasnippet")
     (require 'yasnippet) ;; not yasnippet-bundle
-    (yas/initialize)
-    (yas/load-directory "~/.emacs.d/plugins/yasnippet-x.y.z/snippets")
+    (yas/global-mode 1)
+
+Add your own snippets to `~/.emacs.d/snippets` by placing files there or invoking `yas/new-snippet`.
+
+# Install yasnippet with el-get
+
+El-get is a nice way to get the most recent version, too
 
+See https://github.com/dimitri/el-get for instructions
 
 # How-tos, Bugs, Contributions...