using org-mode to config emacs initialization file
[dotfiles.git] / emacs.d_2 / elpa / use-package-20160403.1129 / use-package-autoloads.el
1 ;;; use-package-autoloads.el --- automatically extracted autoloads
2 ;;
3 ;;; Code:
4 (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
5 \f
6 ;;;### (autoloads nil "use-package" "use-package.el" (22348 25969
7 ;;;;;;  0 0))
8 ;;; Generated autoloads from use-package.el
9
10 (autoload 'use-package "use-package" "\
11 Declare an Emacs package by specifying a group of configuration options.
12
13 For full documentation, please see the README file that came with
14 this file.  Usage:
15
16   (use-package package-name
17      [:keyword [option]]...)
18
19 :init          Code to run before PACKAGE-NAME has been loaded.
20 :config        Code to run after PACKAGE-NAME has been loaded.  Note that if
21                loading is deferred for any reason, this code does not execute
22                until the lazy load has occurred.
23 :preface       Code to be run before everything except `:disabled'; this can
24                be used to define functions for use in `:if', or that should be
25                seen by the byte-compiler.
26
27 :mode          Form to be added to `auto-mode-alist'.
28 :interpreter   Form to be added to `interpreter-mode-alist'.
29
30 :commands      Define autoloads for commands that will be defined by the
31                package.  This is useful if the package is being lazily loaded,
32                and you wish to conditionally call functions in your `:init'
33                block that are defined in the package.
34
35 :bind          Bind keys, and define autoloads for the bound commands.
36 :bind*         Bind keys, and define autoloads for the bound commands,
37                *overriding all minor mode bindings*.
38 :bind-keymap   Bind a key prefix to an auto-loaded keymap defined in the
39                package.  This is like `:bind', but for keymaps.
40 :bind-keymap*  Like `:bind-keymap', but overrides all minor mode bindings
41
42 :defer         Defer loading of a package -- this is implied when using
43                `:commands', `:bind', `:bind*', `:mode' or `:interpreter'.
44                This can be an integer, to force loading after N seconds of
45                idle time, if the package has not already been loaded.
46
47 :after         Defer loading of a package until after any of the named
48                features are loaded.
49
50 :demand        Prevent deferred loading in all cases.
51
52 :if EXPR       Initialize and load only if EXPR evaluates to a non-nil value.
53 :disabled      The package is ignored completely if this keyword is present.
54 :defines       Declare certain variables to silence the byte-compiler.
55 :functions     Declare certain functions to silence the byte-compiler.
56 :load-path     Add to the `load-path' before attempting to load the package.
57 :diminish      Support for diminish.el (if installed).
58 :ensure        Loads the package using package.el if necessary.
59 :pin           Pin the package to an archive.
60
61 \(fn NAME &rest ARGS)" nil t)
62
63 (function-put 'use-package 'lisp-indent-function '1)
64
65 ;;;***
66 \f
67 ;; Local Variables:
68 ;; version-control: never
69 ;; no-byte-compile: t
70 ;; no-update-autoloads: t
71 ;; End:
72 ;;; use-package-autoloads.el ends here