add gitigonre file
[dotfiles.git] / emacs.d_2 / elpa / bind-key-20160227.48 / bind-key-autoloads.el
1 ;;; bind-key-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 "bind-key" "bind-key.el" (22348 25968 0 0))
7 ;;; Generated autoloads from bind-key.el
8
9 (autoload 'bind-key "bind-key" "\
10 Bind KEY-NAME to COMMAND in KEYMAP (`global-map' if not passed).
11
12 KEY-NAME may be a vector, in which case it is passed straight to
13 `define-key'. Or it may be a string to be interpreted as
14 spelled-out keystrokes, e.g., \"C-c C-z\". See documentation of
15 `edmacro-mode' for details.
16
17 If PREDICATE is non-nil, it is a form evaluated to determine when
18 a key should be bound. It must return non-nil in such cases.
19 Emacs can evaluate this form at any time that it does redisplay
20 or operates on menu data structures, so you should write it so it
21 can safely be called at any time.
22
23 \(fn KEY-NAME COMMAND &optional KEYMAP PREDICATE)" nil t)
24
25 (autoload 'unbind-key "bind-key" "\
26 Unbind the given KEY-NAME, within the KEYMAP (if specified).
27 See `bind-key' for more details.
28
29 \(fn KEY-NAME &optional KEYMAP)" nil t)
30
31 (autoload 'bind-key* "bind-key" "\
32 Similar to `bind-key', but overrides any mode-specific bindings.
33
34 \(fn KEY-NAME COMMAND &optional PREDICATE)" nil t)
35
36 (autoload 'bind-keys "bind-key" "\
37 Bind multiple keys at once.
38
39 Accepts keyword arguments:
40 :map MAP               - a keymap into which the keybindings should be
41                          added
42 :prefix KEY            - prefix key for these bindings
43 :prefix-map MAP        - name of the prefix map that should be created
44                          for these bindings
45 :prefix-docstring STR  - docstring for the prefix-map variable
46 :menu-name NAME        - optional menu string for prefix map
47 :filter FORM           - optional form to determine when bindings apply
48
49 The rest of the arguments are conses of keybinding string and a
50 function symbol (unquoted).
51
52 \(fn &rest ARGS)" nil t)
53
54 (autoload 'bind-keys* "bind-key" "\
55
56
57 \(fn &rest ARGS)" nil t)
58
59 (autoload 'describe-personal-keybindings "bind-key" "\
60 Display all the personal keybindings defined by `bind-key'.
61
62 \(fn)" t nil)
63
64 ;;;***
65 \f
66 ;; Local Variables:
67 ;; version-control: never
68 ;; no-byte-compile: t
69 ;; no-update-autoloads: t
70 ;; End:
71 ;;; bind-key-autoloads.el ends here