el-get/recipes/point-stack.el
Dimitri Fontaine b08fbfd2bb Implement `el-get-is-lazy' and assorted properties, :prepare and :post-init and :lazy.
Also change all recipes using :after to now use :post-init, and fix
blender-python-mode to rely on :prepare, which it seems to be needing.

Removing :features and :load from recipes where it's possible to be lazy is
scheduled for a later patch...
2011-02-24 22:03:47 +01:00

14 lines
403 B
EmacsLisp

(:name point-stack
:type git
:url "https://github.com/mattharrison/point-stack.git"
:features point-stack
:compile "point-stack.el")
;;
;; Configuration example:
;;
;; :post-init (lambda()
;; (global-set-key '[(f5)] 'point-stack-push)
;; (global-set-key '[(f6)] 'point-stack-pop)
;; (global-set-key '[(f7)] 'point-stack-forward-stack-pop))