forked from colonelpanic/dotfiles
Added yasnippet bundle.
This commit is contained in:
parent
82778d2c52
commit
688bf2c799
53
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle-autoloads.el
Normal file
53
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle-autoloads.el
Normal 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
|
1
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle-pkg.el
Normal file
1
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle-pkg.el
Normal file
@ -0,0 +1 @@
|
|||||||
|
(define-package "yasnippet-bundle" "0.6.1" "Yet another snippet extension (Auto compiled bundle)" (quote nil))
|
4459
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle.el
Normal file
4459
elpa/yasnippet-bundle-0.6.1/yasnippet-bundle.el
Normal file
File diff suppressed because it is too large
Load Diff
3
init.el
3
init.el
@ -34,6 +34,9 @@
|
|||||||
(ido-mode t)
|
(ido-mode t)
|
||||||
(setq ido-enable-flex-matching t)
|
(setq ido-enable-flex-matching t)
|
||||||
|
|
||||||
|
;; Code Completion.
|
||||||
|
(require 'yasnippet-bundle)
|
||||||
|
|
||||||
;; Give duplicate open buffers better titles.
|
;; Give duplicate open buffers better titles.
|
||||||
(require 'uniquify)
|
(require 'uniquify)
|
||||||
(setq uniquify-buffer-name-style 'forward)
|
(setq uniquify-buffer-name-style 'forward)
|
||||||
|
Loading…
Reference in New Issue
Block a user