From d84d4924615287551149995c56e562d88d543748 Mon Sep 17 00:00:00 2001 From: Zhang Chiyuan Date: Fri, 7 Mar 2008 07:46:07 +0000 Subject: [PATCH] added comments and URL --- yasnippet.el | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/yasnippet.el b/yasnippet.el index 9f90779..0a10077 100644 --- a/yasnippet.el +++ b/yasnippet.el @@ -1,7 +1,10 @@ ;;; yasnippet.el --- Yet another snippet extension for Emacs. +;; Copyright 2008 pluskid +;; ;; Author: pluskid ;; Version: 0.1 +;; X-URL: http://code.google.com/p/yasnippet/ ;; This file is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by @@ -20,7 +23,17 @@ ;;; Commentary: -;; Nothing. +;; Basic steps to setup: +;; 1. Place `yasnippet.el' in your `load-path'. +;; 2. In your .emacs file: +;; (require 'yasnippet) +;; 3. Place the `snippets' directory somewhere. E.g: ~/.emacs.d/snippets +;; 4. In your .emacs file +;; (yas/initialize) +;; (yas/load-directory "~/.emacs.d/snippets") +;; +;; For more information and detailed usage, refer to the project page: +;; http://code.google.com/p/yasnippet/ (require 'cl)