* Release notes and issue list updated

* Little problems fixed
* ruby mode cls snippet fixed
This commit is contained in:
capitaomorte 2009-07-24 15:41:12 +00:00
parent 8dd3a78c01
commit 102424118e
3 changed files with 24 additions and 2 deletions

View File

@ -6,6 +6,28 @@ ChangeLog
:Contact: pluskid@gmail.com :Contact: pluskid@gmail.com
:Date: 2008-03-22 :Date: 2008-03-22
0.6.0b / 2009-07-2x
===================
* Nested placeholders of the type <div${1: id="${2:someid}"}> $0
* More robust undo/redo support
* Stacked snippet expansion (snippet in snippet)
* Transformation on a primary field, the syntax being
* Validation on field exit
* Wrapping the region in the exit marker $0 of the snippet
* Auto-indentation
* Easier definition of snippets
* Customization group
* Overriding customization variables in snippets
* Fixed `Issue 60
<http://code.google.com/p/yasnippet/issues/detail?id=60>`_
* Fixed `Issue 65
<http://code.google.com/p/yasnippet/issues/detail?id=65>`_
* Fixed `Issue 56
<http://code.google.com/p/yasnippet/issues/detail?id=56>`_
0.5.10 / 2009-02-11 0.5.10 / 2009-02-11
=================== ===================

View File

@ -2,7 +2,7 @@
#contributor : hitesh <hitesh.jasani@gmail.com> #contributor : hitesh <hitesh.jasani@gmail.com>
#group : definitions #group : definitions
# -- # --
class ${1:$ class ${1:$$
(let ((fn (capitalize (file-name-nondirectory (let ((fn (capitalize (file-name-nondirectory
(file-name-sans-extension (file-name-sans-extension
(buffer-file-name)))))) (buffer-file-name))))))

View File

@ -400,7 +400,7 @@ snippet templates")
"A regexp to *almost* recognize a field") "A regexp to *almost* recognize a field")
(defconst yas/multi-dollar-lisp-expression-regexp (defconst yas/multi-dollar-lisp-expression-regexp
"$+\\(([^)]*)\\)" "$+[ \t\n]*\\(([^)]*)\\)"
"A regexp to *almost* recognize a \"$(...)\" expression") "A regexp to *almost* recognize a \"$(...)\" expression")
(defconst yas/backquote-lisp-expression-regexp (defconst yas/backquote-lisp-expression-regexp