Klimi's new dotfiles with stow.
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.

73 lines
2.6 KiB

пре 4 година
  1. ;;; spinner-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 "spinner" "spinner.el" (0 0 0 0))
  7. ;;; Generated autoloads from spinner.el
  8. (autoload 'spinner-create "spinner" "\
  9. Create a spinner of the given TYPE.
  10. The possible TYPEs are described in `spinner--type-to-frames'.
  11. FPS, if given, is the number of desired frames per second.
  12. Default is `spinner-frames-per-second'.
  13. If BUFFER-LOCAL is non-nil, the spinner will be automatically
  14. deactivated if the buffer is killed. If BUFFER-LOCAL is a
  15. buffer, use that instead of current buffer.
  16. When started, in order to function properly, the spinner runs a
  17. timer which periodically calls `force-mode-line-update' in the
  18. curent buffer. If BUFFER-LOCAL was set at creation time, then
  19. `force-mode-line-update' is called in that buffer instead. When
  20. the spinner is stopped, the timer is deactivated.
  21. DELAY, if given, is the number of seconds to wait after starting
  22. the spinner before actually displaying it. It is safe to cancel
  23. the spinner before this time, in which case it won't display at
  24. all.
  25. \(fn &optional TYPE BUFFER-LOCAL FPS DELAY)" nil nil)
  26. (autoload 'spinner-start "spinner" "\
  27. Start a mode-line spinner of given TYPE-OR-OBJECT.
  28. If TYPE-OR-OBJECT is an object created with `make-spinner',
  29. simply activate it. This method is designed for minor modes, so
  30. they can use the spinner as part of their lighter by doing:
  31. \\='(:eval (spinner-print THE-SPINNER))
  32. To stop this spinner, call `spinner-stop' on it.
  33. If TYPE-OR-OBJECT is anything else, a buffer-local spinner is
  34. created with this type, and it is displayed in the
  35. `mode-line-process' of the buffer it was created it. Both
  36. TYPE-OR-OBJECT and FPS are passed to `make-spinner' (which see).
  37. To stop this spinner, call `spinner-stop' in the same buffer.
  38. Either way, the return value is a function which can be called
  39. anywhere to stop this spinner. You can also call `spinner-stop'
  40. in the same buffer where the spinner was created.
  41. FPS, if given, is the number of desired frames per second.
  42. Default is `spinner-frames-per-second'.
  43. DELAY, if given, is the number of seconds to wait until actually
  44. displaying the spinner. It is safe to cancel the spinner before
  45. this time, in which case it won't display at all.
  46. \(fn &optional TYPE-OR-OBJECT FPS DELAY)" nil nil)
  47. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "spinner" '("spinner")))
  48. ;;;***
  49. ;; Local Variables:
  50. ;; version-control: never
  51. ;; no-byte-compile: t
  52. ;; no-update-autoloads: t
  53. ;; coding: utf-8
  54. ;; End:
  55. ;;; spinner-autoloads.el ends here