From dc7a6402277f29e521edc455161bb9d5d9134e6f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Wed, 14 Dec 2011 10:49:44 +0000 Subject: [PATCH] Updated README.mdown's installation instructions --- README.mdown | 45 ++++++++++++++------------------------------- 1 file changed, 14 insertions(+), 31 deletions(-) diff --git a/README.mdown b/README.mdown index 4f385dc38..ba9585f02 100755 --- a/README.mdown +++ b/README.mdown @@ -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... -- 2.39.2