My attempt to optimize my emacs load time <1 second
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.3 KiB

  1. ;;; ace-window-autoloads.el --- automatically extracted autoloads
  2. ;;
  3. ;;; Code:
  4. ;;;### (autoloads nil "ace-window" "ace-window.el" (0 0 0 0))
  5. ;;; Generated autoloads from ace-window.el
  6. (autoload 'ace-select-window "ace-window" "\
  7. Ace select window." t nil)
  8. (autoload 'ace-delete-window "ace-window" "\
  9. Ace delete window." t nil)
  10. (autoload 'ace-swap-window "ace-window" "\
  11. Ace swap window." t nil)
  12. (autoload 'ace-delete-other-windows "ace-window" "\
  13. Ace delete other windows." t nil)
  14. (autoload 'ace-display-buffer "ace-window" "\
  15. Make `display-buffer' and `pop-to-buffer' select using `ace-window'.
  16. See sample config for `display-buffer-base-action' and `display-buffer-alist':
  17. https://github.com/abo-abo/ace-window/wiki/display-buffer.
  18. \(fn BUFFER ALIST)" nil nil)
  19. (autoload 'ace-window "ace-window" "\
  20. Select a window.
  21. Perform an action based on ARG described below.
  22. By default, behaves like extended `other-window'.
  23. See `aw-scope' which extends it to work with frames.
  24. Prefixed with one \\[universal-argument], does a swap between the
  25. selected window and the current window, so that the selected
  26. buffer moves to current window (and current buffer moves to
  27. selected window).
  28. Prefixed with two \\[universal-argument]'s, deletes the selected
  29. window.
  30. \(fn ARG)" t nil)
  31. (defvar ace-window-display-mode nil "\
  32. Non-nil if Ace-Window-Display mode is enabled.
  33. See the `ace-window-display-mode' command
  34. for a description of this minor mode.
  35. Setting this variable directly does not take effect;
  36. either customize it (see the info node `Easy Customization')
  37. or call the function `ace-window-display-mode'.")
  38. (custom-autoload 'ace-window-display-mode "ace-window" nil)
  39. (autoload 'ace-window-display-mode "ace-window" "\
  40. Minor mode for showing the ace window key in the mode line.
  41. If called interactively, enable Ace-Window-Display mode if ARG is
  42. positive, and disable it if ARG is zero or negative. If called
  43. from Lisp, also enable the mode if ARG is omitted or nil, and
  44. toggle it if ARG is `toggle'; disable the mode otherwise.
  45. \(fn &optional ARG)" t nil)
  46. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "ace-window" '("ace-window-mode" "aw-")))
  47. ;;;***
  48. (provide 'ace-window-autoloads)
  49. ;; Local Variables:
  50. ;; version-control: never
  51. ;; no-byte-compile: t
  52. ;; no-update-autoloads: t
  53. ;; coding: utf-8
  54. ;; End:
  55. ;;; ace-window-autoloads.el ends here