Personal emacs config
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.

78 lines
2.4 KiB

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