]> code.delx.au - gnu-emacs-elpa/log
gnu-emacs-elpa
15 years agoUse updated version of python class snippet from sverre.johansen
Zhang Chiyuan [Fri, 12 Dec 2008 05:01:50 +0000 (05:01 +0000)]
Use updated version of python class snippet from  sverre.johansen

15 years agoFixed the bug of the default code assigned to yas/buffer-local-condition (Issue 45)
Zhang Chiyuan [Thu, 11 Dec 2008 05:50:00 +0000 (05:50 +0000)]
Fixed the bug of the default code assigned to yas/buffer-local-condition (Issue 45)

15 years agoFixed the error of $> without overlay (Issue 44).
Zhang Chiyuan [Thu, 11 Dec 2008 05:44:10 +0000 (05:44 +0000)]
Fixed the error of $> without overlay (Issue 44).

15 years agoRestore the original simple class snippet from r223 (Issue 40)
Zhang Chiyuan [Thu, 11 Dec 2008 05:29:54 +0000 (05:29 +0000)]
Restore the original simple class snippet from r223 (Issue 40)

15 years agoupdate faq for #key property
Zhang Chiyuan [Tue, 9 Dec 2008 16:56:20 +0000 (16:56 +0000)]
update faq for #key property

15 years agoAccept patch from dima.exe to add #key in template file (Issue 43)
Zhang Chiyuan [Tue, 9 Dec 2008 16:46:48 +0000 (16:46 +0000)]
Accept patch from dima.exe to add #key in template file (Issue 43)

15 years agoMoved objc-mode directory into cc-mode
Zhang Chiyuan [Tue, 9 Dec 2008 15:15:47 +0000 (15:15 +0000)]
Moved objc-mode directory into cc-mode

15 years agoDo not include auto-generated snippets in the repo.
Zhang Chiyuan [Sun, 7 Dec 2008 16:14:54 +0000 (16:14 +0000)]
Do not include auto-generated snippets in the repo.

15 years agoAdded snippets for lsl-mode from Xah Lee.
Zhang Chiyuan [Sun, 7 Dec 2008 16:12:57 +0000 (16:12 +0000)]
Added snippets for lsl-mode from Xah Lee.

15 years agoImport snippets for scala-mode and nxml-mode from Anders.
Zhang Chiyuan [Wed, 3 Dec 2008 15:03:55 +0000 (15:03 +0000)]
Import snippets for scala-mode and nxml-mode from Anders.

15 years agoadd some snippets from users for html and latex mode
Zhang Chiyuan [Tue, 2 Dec 2008 04:08:38 +0000 (04:08 +0000)]
add some snippets from users for html and latex mode

15 years agoFixed the missing space in the cls snippet for ruby-mode
Zhang Chiyuan [Tue, 18 Nov 2008 02:26:27 +0000 (02:26 +0000)]
Fixed the missing space in the cls snippet for ruby-mode

15 years agofix the bug on expanding a snippet without
Zhang Chiyuan [Mon, 20 Oct 2008 21:07:18 +0000 (21:07 +0000)]
fix the bug on expanding a snippet without

15 years agoUse eval-when-compile for (require 'cl)
Zhang Chiyuan [Wed, 10 Sep 2008 12:27:32 +0000 (12:27 +0000)]
Use eval-when-compile for (require 'cl)

15 years agoAdded snippets for erlang-mode from users
Zhang Chiyuan [Wed, 10 Sep 2008 12:01:23 +0000 (12:01 +0000)]
Added snippets for erlang-mode from users

15 years agoadded csharp, sql snippets from users
Zhang Chiyuan [Wed, 10 Sep 2008 11:56:57 +0000 (11:56 +0000)]
added csharp, sql snippets from users

15 years agoUpdate changelog for issue 16
Zhang Chiyuan [Tue, 2 Sep 2008 13:11:14 +0000 (13:11 +0000)]
Update changelog for issue 16

15 years agoAdded $> support, fixed issue 16
Zhang Chiyuan [Tue, 2 Sep 2008 13:06:51 +0000 (13:06 +0000)]
Added $> support, fixed issue 16

15 years ago* Added a new section "Field-level undo functionality" to correct
capitaomorte [Sat, 30 Aug 2008 19:33:16 +0000 (19:33 +0000)]
* Added a new section "Field-level undo functionality" to correct
  issue 33.

* Added functions `yas/field-undo-before-hook',
  `yas/field-undo-after-hook', `yas/field-undo-group-text-change' and
  variables `yas/field-undo-history',
  `yas/field-undo-forbidden-commands' to implement field-level undo.

* Modified `yas/cleanup-snippet' to record the actual snippet end
  in the snippet before cleaning up the main overlay.

* New hooks `yas/field-undo-before-hook' and
  `yas/field-undo-after-hook' added to `pre-command-hook' and
  `post-command-hook', respectively.

* Slightly changed the commentary of the "Snippet register and
  unregister routines section"

* Modified step 12 to call `yas/undo-expand-snippet' without the
  `(point-min)' argument, which led to incorrect undo behaviour.

* Added a new step in `yas/expand-snippet' describing the local
  restore and save of undo infomation in a new slot of the
  `yas/snippet' structure. This is step 14, previous 14 was moved to 15.

* Modified `yas/undo-expand-snippet' to kill text up to the the
  correct snippet end, which was not being calculated correctly. It is
  now a slot of the snippet itself and no longer a parameter.

* Added functions `yas/current-field-text',
  `yas/replace-fields-with-value',
  `yas/remove-recent-undo-from-history' to refactor some code used
  twice or more.

* Modified `yas/check-cleanup-snippet' to detect trigger cleanup
  if point exits any primary snippet field, of any
  group. Previously cleanup would only be triggered on exiting
  all groups. This is a follow-up to issue 28.

* Added two slot to the `yas/snippet' structure to allow for
  field-level undo and correct small bug in the previous fix of issue
  28.

* Modified `yas/cleanup-snippet' to call
  `yas/after-exit-snippet-hook' as a follow-up to feedback on
  issue 28.

* (Accidentaly :) changed (but corrected!) indentation of most
  existing functions. This was done by a buffer global indent-region.

* (Accidentaly :) ran `checkdoc' but then gave up, it's
  uncessary. Didn't change much stuff though.

15 years ago* Fixed issue 28,
capitaomorte [Fri, 22 Aug 2008 17:09:16 +0000 (17:09 +0000)]
* Fixed issue 28,
  http://code.google.com/p/yasnippet/issues/detail?id=28

* Added snippet registration routines `yas/register-snippet',
  `yas/unregister-snippet', `yas/cleanup-snippet',
  `yas/exterminate-snippets' and `yas/check-cleanup-snippet'

* Adjusted existing code to call these routines.

* Added some commentary to explain functionality.

15 years agoRaise an error when yas/load-directory get a parameter that is not a directory.
Zhang Chiyuan [Wed, 20 Aug 2008 15:32:02 +0000 (15:32 +0000)]
Raise an error when yas/load-directory get a parameter that is not a directory.

15 years agoAdded several snippets for erlang-mode. Thanks hitesh
Zhang Chiyuan [Wed, 20 Aug 2008 02:10:57 +0000 (02:10 +0000)]
Added several snippets for erlang-mode. Thanks hitesh

15 years agoAdded a smarter ruby-mode class snippet
Zhang Chiyuan [Mon, 11 Aug 2008 23:59:51 +0000 (23:59 +0000)]
Added a smarter ruby-mode class snippet

15 years agoforget to commit for 0.5.6?
Zhang Chiyuan [Fri, 8 Aug 2008 05:04:42 +0000 (05:04 +0000)]
forget to commit for 0.5.6?

15 years agoMake the environment of elisp evaluation more friendly to (current-column)
Zhang Chiyuan [Wed, 6 Aug 2008 08:52:36 +0000 (08:52 +0000)]
Make the environment of elisp evaluation more friendly to (current-column)

15 years agofixed the regular expression bug in python-mode snippets.
Zhang Chiyuan [Fri, 1 Aug 2008 07:51:16 +0000 (07:51 +0000)]
fixed the regular expression bug in python-mode snippets.

15 years agouse full key extension as "name" when no "name" property defined.
Zhang Chiyuan [Fri, 1 Aug 2008 05:04:47 +0000 (05:04 +0000)]
use full key extension as "name" when no "name" property defined.

15 years agoUse filename for snippet name if no "name" property is defined.
Zhang Chiyuan [Thu, 31 Jul 2008 07:05:53 +0000 (07:05 +0000)]
Use filename for snippet name if no "name" property is defined.

16 years agoadd markdown-mode to known modes
Zhang Chiyuan [Wed, 18 Jun 2008 04:06:26 +0000 (04:06 +0000)]
add markdown-mode to known modes

16 years agoAdded snippets for markdown-mode from Peng Deng.
Zhang Chiyuan [Wed, 18 Jun 2008 04:05:03 +0000 (04:05 +0000)]
Added snippets for markdown-mode from Peng Deng.

16 years agoAvoid gcc warning of cc-mode 'main' snippet
Zhang Chiyuan [Thu, 29 May 2008 04:10:56 +0000 (04:10 +0000)]
Avoid gcc warning of cc-mode 'main' snippet

16 years agoAdded directory to yas/root-directory automatically when loaded.
Zhang Chiyuan [Thu, 22 May 2008 05:39:56 +0000 (05:39 +0000)]
Added directory to yas/root-directory automatically when loaded.

16 years agoOops, forget to check in the latest changes since 0.5.3
Zhang Chiyuan [Wed, 21 May 2008 06:52:50 +0000 (06:52 +0000)]
Oops, forget to check in the latest changes since 0.5.3

16 years agoadd python-mode-hook to extra-mode-hooks
Zhang Chiyuan [Thu, 15 May 2008 02:04:29 +0000 (02:04 +0000)]
add python-mode-hook to extra-mode-hooks

16 years agoAdded ox-mode-hook to extra-mode-hooks
Zhang Chiyuan [Tue, 13 May 2008 23:09:26 +0000 (23:09 +0000)]
Added ox-mode-hook to extra-mode-hooks

16 years agoinclude html snippets from JimmyWu
Zhang Chiyuan [Sat, 10 May 2008 05:15:00 +0000 (05:15 +0000)]
include html snippets from JimmyWu

16 years agofix a bug of condition system
Zhang Chiyuan [Fri, 2 May 2008 15:32:19 +0000 (15:32 +0000)]
fix a bug of condition system

16 years agoremove the looking-back condition, some old emacs don't have looking-back function.
Zhang Chiyuan [Thu, 1 May 2008 03:26:14 +0000 (03:26 +0000)]
remove the looking-back condition, some old emacs don't have looking-back function.

16 years agofix a bug in condition system.
Zhang Chiyuan [Thu, 1 May 2008 03:21:32 +0000 (03:21 +0000)]
fix a bug in condition system.

16 years agofix indent (was 3 spaces) of snippets for python-mode
Zhang Chiyuan [Fri, 25 Apr 2008 15:01:39 +0000 (15:01 +0000)]
fix indent (was 3 spaces) of snippets for python-mode

16 years agomore snippets for css-mode
Zhang Chiyuan [Wed, 23 Apr 2008 06:51:30 +0000 (06:51 +0000)]
more snippets for css-mode

16 years agofix bug: comparing string to symbol using string=
Zhang Chiyuan [Sun, 20 Apr 2008 08:25:14 +0000 (08:25 +0000)]
fix bug: comparing string to symbol using string=

16 years agoupdate doc template to include a link to download page
Zhang Chiyuan [Thu, 17 Apr 2008 12:16:52 +0000 (12:16 +0000)]
update doc template to include a link to download page

16 years agoupdate changelog
Zhang Chiyuan [Mon, 14 Apr 2008 12:43:44 +0000 (12:43 +0000)]
update changelog

16 years agoUse a beautiful css style for the document. release as 0.5.1
Zhang Chiyuan [Mon, 14 Apr 2008 12:42:08 +0000 (12:42 +0000)]
Use a beautiful css style for the document. release as 0.5.1

16 years agoload snippets from menu bar
Zhang Chiyuan [Fri, 11 Apr 2008 04:04:46 +0000 (04:04 +0000)]
load snippets from menu bar

16 years agoyas/root-directory now can contains a list of directories
Zhang Chiyuan [Fri, 11 Apr 2008 03:58:40 +0000 (03:58 +0000)]
yas/root-directory now can contains a list of directories

16 years agoupdate changelog and document
Zhang Chiyuan [Thu, 10 Apr 2008 05:46:13 +0000 (05:46 +0000)]
update changelog and document

16 years agorename fall-back to fallback
Zhang Chiyuan [Thu, 10 Apr 2008 05:40:30 +0000 (05:40 +0000)]
rename fall-back to fallback

16 years agoYASnippet now integrate with hippie-expand
Zhang Chiyuan [Thu, 10 Apr 2008 05:30:23 +0000 (05:30 +0000)]
YASnippet now integrate with hippie-expand

16 years agothe behavior when no snippet is found is now customizable through `yas/fall-back...
Zhang Chiyuan [Thu, 10 Apr 2008 05:11:01 +0000 (05:11 +0000)]
the behavior when no snippet is found is now customizable through `yas/fall-back-behavior'

16 years agodefault condition won't expand a snippet in string or comment.
Zhang Chiyuan [Thu, 10 Apr 2008 04:50:00 +0000 (04:50 +0000)]
default condition won't expand a snippet in string or comment.

16 years agoavoid the problem where the condition is evaluated twice
Zhang Chiyuan [Thu, 10 Apr 2008 04:39:56 +0000 (04:39 +0000)]
avoid the problem where the condition is evaluated twice

16 years agonow you can C-w to delete the overlay without causing problems.
Zhang Chiyuan [Thu, 10 Apr 2008 04:30:52 +0000 (04:30 +0000)]
now you can C-w to delete the overlay without causing problems.

16 years agomake the three python snippet's coding utf-8
Zhang Chiyuan [Mon, 7 Apr 2008 14:13:55 +0000 (14:13 +0000)]
make the three python snippet's coding utf-8

16 years agoadvanced snippet for python from Yasser González Fernández
Zhang Chiyuan [Mon, 7 Apr 2008 14:12:19 +0000 (14:12 +0000)]
advanced snippet for python from Yasser González Fernández

16 years agoprepare for 0.4.5
Zhang Chiyuan [Mon, 7 Apr 2008 10:43:49 +0000 (10:43 +0000)]
prepare for 0.4.5

16 years agoincorporate the latest dropdown-list.el
Zhang Chiyuan [Mon, 7 Apr 2008 10:35:50 +0000 (10:35 +0000)]
incorporate the latest dropdown-list.el

16 years agoadd snippets for f90-mode from Li Zhu
Zhang Chiyuan [Mon, 7 Apr 2008 04:44:15 +0000 (04:44 +0000)]
add snippets for f90-mode from Li Zhu

16 years agoadd <backtab> to keymap of back navigating
Zhang Chiyuan [Mon, 7 Apr 2008 02:27:30 +0000 (02:27 +0000)]
add <backtab> to keymap of back navigating

16 years agotwo new snippet for python mode from user
Zhang Chiyuan [Thu, 3 Apr 2008 13:55:25 +0000 (13:55 +0000)]
two new snippet for python mode from user

16 years agoadd actionscript-mode-hook to extra-mode-hooks
Zhang Chiyuan [Fri, 28 Mar 2008 10:54:44 +0000 (10:54 +0000)]
add actionscript-mode-hook to extra-mode-hooks

16 years agobug fix: infinite recursion when several snippets overlaps.
Zhang Chiyuan [Thu, 27 Mar 2008 08:25:37 +0000 (08:25 +0000)]
bug fix: infinite recursion when several snippets overlaps.

16 years agoa new version of class snippet for python-mode
Zhang Chiyuan [Thu, 27 Mar 2008 00:00:17 +0000 (00:00 +0000)]
a new version of class snippet for python-mode

16 years agomake snippets keys shorter in rst-mode
Zhang Chiyuan [Tue, 25 Mar 2008 11:36:39 +0000 (11:36 +0000)]
make snippets keys shorter in rst-mode

16 years agoprepare for 0.4.4
Zhang Chiyuan [Mon, 24 Mar 2008 02:28:25 +0000 (02:28 +0000)]
prepare for 0.4.4

16 years agobug fix: dropdown-list.el doesn't recognize <return> key.
Zhang Chiyuan [Mon, 24 Mar 2008 01:31:04 +0000 (01:31 +0000)]
bug fix: dropdown-list.el doesn't recognize <return> key.

16 years agobug fix: failed to recognize user customized yas/trigger-key
Zhang Chiyuan [Sun, 23 Mar 2008 00:45:08 +0000 (00:45 +0000)]
bug fix: failed to recognize user customized yas/trigger-key

16 years agoadd contents to faq.
Zhang Chiyuan [Sat, 22 Mar 2008 11:12:16 +0000 (11:12 +0000)]
add contents to faq.

16 years agoprepare for 0.4.2
Zhang Chiyuan [Sat, 22 Mar 2008 11:01:18 +0000 (11:01 +0000)]
prepare for 0.4.2

16 years agocorrect rake file dependency
Zhang Chiyuan [Sat, 22 Mar 2008 10:47:36 +0000 (10:47 +0000)]
correct rake file dependency

16 years agoexclude html files from svn
Zhang Chiyuan [Sat, 22 Mar 2008 10:43:44 +0000 (10:43 +0000)]
exclude html files from svn

16 years agoadd image to document
Zhang Chiyuan [Sat, 22 Mar 2008 08:47:05 +0000 (08:47 +0000)]
add image to document

16 years agoadd html document to repo so that they can be linked directly from Google Code Homepage
Zhang Chiyuan [Sat, 22 Mar 2008 08:14:51 +0000 (08:14 +0000)]
add html document to repo so that they can be linked directly from Google Code Homepage

16 years agoprepare for 0.4.1
Zhang Chiyuan [Fri, 21 Mar 2008 15:29:17 +0000 (15:29 +0000)]
prepare for 0.4.1

16 years agouse a hook to ensure yas/minor-mode's keybinding always takes priority.
Zhang Chiyuan [Fri, 21 Mar 2008 15:22:39 +0000 (15:22 +0000)]
use a hook to ensure yas/minor-mode's keybinding always takes priority.

16 years agowon't include Rakefile in the release package
Zhang Chiyuan [Thu, 20 Mar 2008 15:45:56 +0000 (15:45 +0000)]
won't include Rakefile in the release package

16 years agoremove php-mode-hook from black list
Zhang Chiyuan [Thu, 20 Mar 2008 15:42:07 +0000 (15:42 +0000)]
remove php-mode-hook from black list

16 years agobasic document ready
Zhang Chiyuan [Thu, 20 Mar 2008 15:36:33 +0000 (15:36 +0000)]
basic document ready

16 years agomore document for selecting a snippet
Zhang Chiyuan [Thu, 20 Mar 2008 15:12:58 +0000 (15:12 +0000)]
more document for selecting a snippet

16 years agobetter doc string for yas/buffer-local-condition
Zhang Chiyuan [Thu, 20 Mar 2008 13:36:33 +0000 (13:36 +0000)]
better doc string for yas/buffer-local-condition

16 years agomore powerful condition system
Zhang Chiyuan [Thu, 20 Mar 2008 13:24:39 +0000 (13:24 +0000)]
more powerful condition system

16 years agomore document
Zhang Chiyuan [Thu, 20 Mar 2008 12:10:13 +0000 (12:10 +0000)]
more document

16 years agopreparing for new rst format document
Zhang Chiyuan [Thu, 20 Mar 2008 09:53:06 +0000 (09:53 +0000)]
preparing for new rst format document

16 years agobefore expansion hook
Zhang Chiyuan [Thu, 20 Mar 2008 08:11:39 +0000 (08:11 +0000)]
before expansion hook

16 years agosophisticated condition system for yasnippet
Zhang Chiyuan [Thu, 20 Mar 2008 08:10:10 +0000 (08:10 +0000)]
sophisticated condition system for yasnippet

16 years agoadd php-mode to yas/extra-mode-hooks
Zhang Chiyuan [Wed, 19 Mar 2008 16:34:32 +0000 (16:34 +0000)]
add php-mode to yas/extra-mode-hooks

16 years agouse a separate mode-map for yas/minor-mode
Zhang Chiyuan [Wed, 19 Mar 2008 12:15:38 +0000 (12:15 +0000)]
use a separate mode-map for yas/minor-mode

16 years agoadd README file.
Zhang Chiyuan [Mon, 17 Mar 2008 02:16:33 +0000 (02:16 +0000)]
add README file.

16 years agobugfix: Emacs get confused when a field content is deleted.
Zhang Chiyuan [Mon, 17 Mar 2008 01:29:03 +0000 (01:29 +0000)]
bugfix: Emacs get confused when a field content is deleted.

16 years agomore compatible with dropdown-list.el
Zhang Chiyuan [Sun, 16 Mar 2008 03:41:12 +0000 (03:41 +0000)]
more compatible with dropdown-list.el

16 years agosupport a global after-exit-snippet-hook.
Zhang Chiyuan [Sun, 16 Mar 2008 03:11:59 +0000 (03:11 +0000)]
support a global after-exit-snippet-hook.

16 years agoalso proper behavior of next-field-group.
Zhang Chiyuan [Sun, 16 Mar 2008 03:00:47 +0000 (03:00 +0000)]
also proper behavior of next-field-group.

16 years agoUse minor-mode instead of global-set-key. Thanks Trey Jackson.
Zhang Chiyuan [Sun, 16 Mar 2008 02:26:08 +0000 (02:26 +0000)]
Use minor-mode instead of global-set-key. Thanks Trey Jackson.

16 years agoadd dropdown-list.el support.
Zhang Chiyuan [Sun, 16 Mar 2008 01:43:39 +0000 (01:43 +0000)]
add dropdown-list.el support.

16 years agouser customizable window-system and text popup function.
Zhang Chiyuan [Sun, 16 Mar 2008 01:35:41 +0000 (01:35 +0000)]
user customizable window-system and text popup function.

16 years agoprotect the evaluated string.
Zhang Chiyuan [Sat, 15 Mar 2008 13:36:04 +0000 (13:36 +0000)]
protect the evaluated string.

16 years agoprepare for a bug fix version
Zhang Chiyuan [Sat, 15 Mar 2008 10:20:41 +0000 (10:20 +0000)]
prepare for a bug fix version

16 years agobugfix: error when multiple candidate exists in -nw mode.
Zhang Chiyuan [Sat, 15 Mar 2008 10:14:40 +0000 (10:14 +0000)]
bugfix: error when multiple candidate exists in -nw mode.

16 years agoSupport expanding a snippet inside another snippet (only if not inside a field)
Zhang Chiyuan [Fri, 14 Mar 2008 01:27:22 +0000 (01:27 +0000)]
Support expanding a snippet inside another snippet (only if not inside a field)