mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-14 05:23:04 +00:00
Forget to check in 0.5.8 version
This commit is contained in:
parent
d4b0325911
commit
3afb7baa28
@ -6,6 +6,29 @@ ChangeLog
|
|||||||
:Contact: pluskid@gmail.com
|
:Contact: pluskid@gmail.com
|
||||||
:Date: 2008-03-22
|
:Date: 2008-03-22
|
||||||
|
|
||||||
|
0.5.8 / 2009-01-15
|
||||||
|
==================
|
||||||
|
|
||||||
|
* Added a ``key`` property in snippet definition for snippet names
|
||||||
|
that are not valid path name.
|
||||||
|
* Fixed some bugs of indenting (`Issue 44
|
||||||
|
<http://code.google.com/p/yasnippet/issues/detail?id=44>`_, `Issue
|
||||||
|
46 <http://code.google.com/p/yasnippet/issues/detail?id=46>`_).
|
||||||
|
* Fixed `Issue 45
|
||||||
|
<http://code.google.com/p/yasnippet/issues/detail?id=45>`_ by
|
||||||
|
providing a proper default value for ``yas/buffer-local-condition``.
|
||||||
|
* Added helper function ``yas/substr`` for convenient mirror
|
||||||
|
transformation.
|
||||||
|
* Make variable ``yas/registered-snippet`` properly initialized.
|
||||||
|
* Fixed the overlay error when overlay becomes empty (`Issue 49
|
||||||
|
<http://code.google.com/p/yasnippet/issues/detail?id=49>`_ and
|
||||||
|
`Issue 48
|
||||||
|
<http://code.google.com/p/yasnippet/issues/detail?id=48>`_). This
|
||||||
|
bug has occurred and been fixed earlier, and should not have
|
||||||
|
happened if we have proper regression test.
|
||||||
|
* Added a workaround for ``c-electric-`` serial commands (`Issue 27
|
||||||
|
<http://code.google.com/p/yasnippet/issues/detail?id=27>`_).
|
||||||
|
|
||||||
0.5.7 / 2008-12-03
|
0.5.7 / 2008-12-03
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
;; Copyright 2008 pluskid
|
;; Copyright 2008 pluskid
|
||||||
;;
|
;;
|
||||||
;; Author: pluskid <pluskid@gmail.com>
|
;; Author: pluskid <pluskid@gmail.com>
|
||||||
;; Version: 0.5.7
|
;; Version: 0.5.8
|
||||||
;; X-URL: http://code.google.com/p/yasnippet/
|
;; X-URL: http://code.google.com/p/yasnippet/
|
||||||
|
|
||||||
;; This file is free software; you can redistribute it and/or modify
|
;; This file is free software; you can redistribute it and/or modify
|
||||||
@ -202,7 +202,7 @@ to expand.
|
|||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; Internal variables
|
;; Internal variables
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
(defvar yas/version "0.5.7")
|
(defvar yas/version "0.5.8")
|
||||||
|
|
||||||
(defvar yas/snippet-tables (make-hash-table)
|
(defvar yas/snippet-tables (make-hash-table)
|
||||||
"A hash table of snippet tables corresponding to each major-mode.")
|
"A hash table of snippet tables corresponding to each major-mode.")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user