Merge remote-tracking branch 'origin/master' into yelp

* origin/master:
  Added yasnippet bundle.
  Deleted yasnippet.
  Removed yasnippet module.
This commit is contained in:
Ivan Malison 2013-03-19 02:01:04 -07:00
commit 78a06c9f10
6 changed files with 4516 additions and 4 deletions

3
.gitmodules vendored
View File

@ -1,9 +1,6 @@
[submodule "lisp/flymake-cursor"]
path = lisp/flymake-cursor
url = git@github.com:illusori/emacs-flymake-cursor.git
[submodule "lisp/yasnippet"]
path = lisp/yasnippet
url = git@github.com:capitaomorte/yasnippet.git
[submodule "lisp/rainbow-delimiters"]
path = lisp/rainbow-delimiters
url = git@github.com:jlr/rainbow-delimiters.git

View File

@ -0,0 +1,53 @@
;;; yasnippet-bundle-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
;;;### (autoloads (yas/minor-mode yas/root-directory) "yasnippet-bundle"
;;;;;; "yasnippet-bundle.el" (20808 10390))
;;; Generated autoloads from yasnippet-bundle.el
(defvar yas/root-directory nil "\
Root directory that stores the snippets for each major mode.
If you set this from your .emacs, can also be a list of strings,
for multiple root directories. If you make this a list, the first
element is always the user-created snippets directory. Other
directories are used for bulk reloading of all snippets using
`yas/reload-all'")
(custom-autoload 'yas/root-directory "yasnippet-bundle" nil)
(autoload 'yas/minor-mode "yasnippet-bundle" "\
Toggle YASnippet mode.
When YASnippet mode is enabled, the `tas/trigger-key' key expands
snippets of code depending on the mode.
With no argument, this command toggles the mode.
positive prefix argument turns on the mode.
Negative prefix argument turns off the mode.
You can customize the key through `yas/trigger-key'.
Key bindings:
\\{yas/minor-mode-map}
\(fn &optional ARG)" t nil)
(require 'yasnippet-bundle)
;;;***
;;;### (autoloads nil nil ("yasnippet-bundle-pkg.el") (20808 10390
;;;;;; 105102))
;;;***
(provide 'yasnippet-bundle-autoloads)
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; coding: utf-8
;; End:
;;; yasnippet-bundle-autoloads.el ends here

View File

@ -0,0 +1 @@
(define-package "yasnippet-bundle" "0.6.1" "Yet another snippet extension (Auto compiled bundle)" (quote nil))

File diff suppressed because it is too large Load Diff

View File

@ -34,6 +34,9 @@
(ido-mode t)
(setq ido-enable-flex-matching t)
;; Code Completion.
(require 'yasnippet-bundle)
;; Give duplicate open buffers better titles.
(require 'uniquify)
(setq uniquify-buffer-name-style 'forward)

@ -1 +0,0 @@
Subproject commit d9d7ed32ae11df8cbc91646bd5b6984d37efd3b3