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.

77 lines
3.1 KiB

  1. ;;; clipmon-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 "clipmon" "clipmon.el" (0 0 0 0))
  7. ;;; Generated autoloads from clipmon.el
  8. (define-key-after global-map [menu-bar options clipmon-separator] '(menu-item "---") 'highlight-paren-mode)
  9. (define-key-after global-map [menu-bar options clipmon-killring] '(menu-item "Clipboard Monitor (Add to Kill Ring)" clipmon-mode :help "Add changes to the system clipboard to Emacs's kill ring." :button (:toggle . clipmon-mode)) 'clipmon-separator)
  10. (define-key-after global-map [menu-bar options clipmon-autoinsert] '(menu-item "Clipboard Monitor Autoinsert" clipmon-autoinsert-toggle :help "Automatically insert changes to the system clipboard at the current location." :button (:toggle . clipmon--autoinsert)) 'clipmon-killring)
  11. (defvar clipmon-mode nil "\
  12. Non-nil if Clipmon mode is enabled.
  13. See the `clipmon-mode' command
  14. for a description of this minor mode.
  15. Setting this variable directly does not take effect;
  16. either customize it (see the info node `Easy Customization')
  17. or call the function `clipmon-mode'.")
  18. (custom-autoload 'clipmon-mode "clipmon" nil)
  19. (autoload 'clipmon-mode "clipmon" "\
  20. Start/stop clipboard monitor - watch system clipboard, add changes to kill ring.
  21. If called interactively, enable Clipmon mode if ARG is positive,
  22. and disable it if ARG is zero or negative. If called from Lisp,
  23. also enable the mode if ARG is omitted or nil, and toggle it if
  24. ARG is `toggle'; disable the mode otherwise.
  25. To also insert the changes to the system clipboard at the current
  26. location, call `clipmon-autoinsert-toggle' to turn autoinsert on
  27. and off. See commentary in source file for more information -
  28. M-: (find-library 'clipmon).
  29. Upgrade note (2015-02-11): you'll need to bind your shortcut key to
  30. `clipmon-autoinsert-toggle' instead of `clipmon-mode'.
  31. \(fn &optional ARG)" t nil)
  32. (autoload 'clipmon-mode-start "clipmon" "\
  33. Start clipboard monitor - watch system clipboard, add changes to kill ring." t nil)
  34. (autoload 'clipmon-autoinsert-toggle "clipmon" "\
  35. Turn autoinsert on/off - watch system clipboard and insert changes.
  36. Will change cursor color and play a sound. Text will be
  37. transformed before insertion according to various settings - see
  38. `clipmon--transform-text'." t nil)
  39. (autoload 'clipmon-persist "clipmon" "\
  40. Persist the kill ring to disk using Emacs's savehist library.
  41. Will save the kill ring at the end of the session and at various
  42. intervals as specified by variable `savehist-autosave-interval'.
  43. Note that savehist also includes various other Emacs settings by
  44. default, including the minibuffer history - see function
  45. `savehist-mode' for more details." nil nil)
  46. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "clipmon" '("clipmon-")))
  47. ;;;***
  48. ;;;### (autoloads nil nil ("clipmon-pkg.el") (0 0 0 0))
  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. ;;; clipmon-autoloads.el ends here