which-key-autoloads.el (7408B)
1 ;;; which-key-autoloads.el --- automatically extracted autoloads (do not edit) -*- lexical-binding: t -*- 2 ;; Generated by the `loaddefs-generate' function. 3 4 ;; This file is part of GNU Emacs. 5 6 ;;; Code: 7 8 (add-to-list 'load-path (or (and load-file-name (file-name-directory load-file-name)) (car load-path))) 9 10 11 12 ;;; Generated autoloads from which-key.el 13 14 (defvar which-key-mode nil "\ 15 Non-nil if Which-Key mode is enabled. 16 See the `which-key-mode' command 17 for a description of this minor mode. 18 Setting this variable directly does not take effect; 19 either customize it (see the info node `Easy Customization') 20 or call the function `which-key-mode'.") 21 (custom-autoload 'which-key-mode "which-key" nil) 22 (autoload 'which-key-mode "which-key" "\ 23 Toggle which-key-mode. 24 25 This is a global minor mode. If called interactively, toggle the 26 `Which-Key mode' mode. If the prefix argument is positive, 27 enable the mode, and if it is zero or negative, disable the mode. 28 29 If called from Lisp, toggle the mode if ARG is `toggle'. Enable 30 the mode if ARG is nil, omitted, or is a positive number. 31 Disable the mode if ARG is a negative number. 32 33 To check whether the minor mode is enabled in the current buffer, 34 evaluate `(default-value \\='which-key-mode)'. 35 36 The mode's hook is called both when the mode is enabled and when 37 it is disabled. 38 39 (fn &optional ARG)" t) 40 (autoload 'which-key-setup-side-window-right "which-key" "\ 41 Apply suggested settings for side-window that opens on right." t) 42 (autoload 'which-key-setup-side-window-right-bottom "which-key" "\ 43 Apply suggested settings for side-window that opens on right 44 if there is space and the bottom otherwise." t) 45 (autoload 'which-key-setup-side-window-bottom "which-key" "\ 46 Apply suggested settings for side-window that opens on bottom." t) 47 (autoload 'which-key-setup-minibuffer "which-key" "\ 48 Apply suggested settings for minibuffer. 49 Do not use this setup if you use the paging commands. Instead use 50 `which-key-setup-side-window-bottom', which is nearly identical 51 but more functional." t) 52 (autoload 'which-key-add-keymap-based-replacements "which-key" "\ 53 Replace the description of KEY using REPLACEMENT in KEYMAP. 54 KEY should take a format suitable for use in `kbd'. REPLACEMENT 55 should be a cons cell of the form (STRING . COMMAND) for each 56 REPLACEMENT, where STRING is the replacement string and COMMAND 57 is a symbol corresponding to the intended command to be 58 replaced. COMMAND can be nil if the binding corresponds to a key 59 prefix. An example is 60 61 (which-key-add-keymap-based-replacements global-map 62 \"C-x w\" '(\"Save as\" . write-file)). 63 64 For backwards compatibility, REPLACEMENT can also be a string, 65 but the above format is preferred, and the option to use a string 66 for REPLACEMENT will eventually be removed. 67 68 (fn KEYMAP KEY REPLACEMENT &rest MORE)") 69 (autoload 'which-key-add-key-based-replacements "which-key" "\ 70 Replace the description of KEY-SEQUENCE with REPLACEMENT. 71 KEY-SEQUENCE is a string suitable for use in `kbd'. REPLACEMENT 72 may either be a string, as in 73 74 (which-key-add-key-based-replacements \"C-x 1\" \"maximize\") 75 76 a cons of two strings as in 77 78 (which-key-add-key-based-replacements \"C-x 8\" 79 '(\"unicode\" . \"Unicode keys\")) 80 81 or a function that takes a (KEY . BINDING) cons and returns a 82 replacement. 83 84 In the second case, the second string is used to provide a longer 85 name for the keys under a prefix. 86 87 MORE allows you to specifcy additional KEY REPLACEMENT pairs. All 88 replacements are added to `which-key-replacement-alist'. 89 90 (fn KEY-SEQUENCE REPLACEMENT &rest MORE)") 91 (autoload 'which-key-add-major-mode-key-based-replacements "which-key" "\ 92 Functions like `which-key-add-key-based-replacements'. 93 The difference is that MODE specifies the `major-mode' that must 94 be active for KEY-SEQUENCE and REPLACEMENT (MORE contains 95 addition KEY-SEQUENCE REPLACEMENT pairs) to apply. 96 97 (fn MODE KEY-SEQUENCE REPLACEMENT &rest MORE)") 98 (autoload 'which-key-reload-key-sequence "which-key" "\ 99 Simulate entering the key sequence KEY-SEQ. 100 KEY-SEQ should be a list of events as produced by 101 `listify-key-sequence'. If nil, KEY-SEQ defaults to 102 `which-key--current-key-list'. Any prefix arguments that were 103 used are reapplied to the new key sequence. 104 105 (fn &optional KEY-SEQ)") 106 (autoload 'which-key-show-standard-help "which-key" "\ 107 Call the command in `which-key--prefix-help-cmd-backup'. 108 Usually this is `describe-prefix-bindings'. 109 110 (fn &optional _)" t) 111 (autoload 'which-key-show-next-page-no-cycle "which-key" "\ 112 Show next page of keys unless on the last page, in which case 113 call `which-key-show-standard-help'." t) 114 (autoload 'which-key-show-previous-page-no-cycle "which-key" "\ 115 Show previous page of keys unless on the first page, in which 116 case do nothing." t) 117 (autoload 'which-key-show-next-page-cycle "which-key" "\ 118 Show the next page of keys, cycling from end to beginning 119 after last page. 120 121 (fn &optional _)" t) 122 (autoload 'which-key-show-previous-page-cycle "which-key" "\ 123 Show the previous page of keys, cycling from beginning to end 124 after first page. 125 126 (fn &optional _)" t) 127 (autoload 'which-key-show-top-level "which-key" "\ 128 Show top-level bindings. 129 130 (fn &optional _)" t) 131 (autoload 'which-key-show-major-mode "which-key" "\ 132 Show top-level bindings in the map of the current major mode. 133 134 This function will also detect evil bindings made using 135 `evil-define-key' in this map. These bindings will depend on the 136 current evil state. 137 138 (fn &optional ALL)" t) 139 (autoload 'which-key-show-full-major-mode "which-key" "\ 140 Show all bindings in the map of the current major mode. 141 142 This function will also detect evil bindings made using 143 `evil-define-key' in this map. These bindings will depend on the 144 current evil state. " t) 145 (autoload 'which-key-dump-bindings "which-key" "\ 146 Dump bindings from PREFIX into buffer named BUFFER-NAME. 147 148 PREFIX should be a string suitable for `kbd'. 149 150 (fn PREFIX BUFFER-NAME)" t) 151 (autoload 'which-key-undo-key "which-key" "\ 152 Undo last keypress and force which-key update. 153 154 (fn &optional _)" t) 155 (autoload 'which-key-C-h-dispatch "which-key" "\ 156 Dispatch C-h commands by looking up key in 157 `which-key-C-h-map'. This command is always accessible (from any 158 prefix) if `which-key-use-C-h-commands' is non nil." t) 159 (autoload 'which-key-show-keymap "which-key" "\ 160 Show the top-level bindings in KEYMAP using which-key. 161 KEYMAP is selected interactively from all available keymaps. 162 163 If NO-PAGING is non-nil, which-key will not intercept subsequent 164 keypresses for the paging functionality. 165 166 (fn KEYMAP &optional NO-PAGING)" t) 167 (autoload 'which-key-show-full-keymap "which-key" "\ 168 Show all bindings in KEYMAP using which-key. 169 KEYMAP is selected interactively from all available keymaps. 170 171 (fn KEYMAP)" t) 172 (autoload 'which-key-show-minor-mode-keymap "which-key" "\ 173 Show the top-level bindings in KEYMAP using which-key. 174 KEYMAP is selected interactively by mode in 175 `minor-mode-map-alist'. 176 177 (fn &optional ALL)" t) 178 (autoload 'which-key-show-full-minor-mode-keymap "which-key" "\ 179 Show all bindings in KEYMAP using which-key. 180 KEYMAP is selected interactively by mode in 181 `minor-mode-map-alist'." t) 182 (register-definition-prefixes "which-key" '("evil-state" "which-key-")) 183 184 ;;; End of scraped data 185 186 (provide 'which-key-autoloads) 187 188 ;; Local Variables: 189 ;; version-control: never 190 ;; no-byte-compile: t 191 ;; no-update-autoloads: t 192 ;; no-native-compile: t 193 ;; coding: utf-8-emacs-unix 194 ;; End: 195 196 ;;; which-key-autoloads.el ends here