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.

71 lines
2.2 KiB

  1. ;;; undo-tree-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 "undo-tree" "undo-tree.el" (0 0 0 0))
  7. ;;; Generated autoloads from undo-tree.el
  8. (autoload 'undo-tree-mode "undo-tree" "\
  9. Toggle undo-tree mode.
  10. With no argument, this command toggles the mode.
  11. A positive prefix argument turns the mode on.
  12. A negative prefix argument turns it off.
  13. If called interactively, enable Undo-Tree mode if ARG is
  14. positive, and disable it if ARG is zero or negative. If called
  15. from Lisp, also enable the mode if ARG is omitted or nil, and
  16. toggle it if ARG is `toggle'; disable the mode otherwise.
  17. Undo-tree-mode replaces Emacs' standard undo feature with a more
  18. powerful yet easier to use version, that treats the undo history
  19. as what it is: a tree.
  20. The following keys are available in `undo-tree-mode':
  21. \\{undo-tree-map}
  22. Within the undo-tree visualizer, the following keys are available:
  23. \\{undo-tree-visualizer-mode-map}
  24. \(fn &optional ARG)" t nil)
  25. (put 'global-undo-tree-mode 'globalized-minor-mode t)
  26. (defvar global-undo-tree-mode nil "\
  27. Non-nil if Global Undo-Tree mode is enabled.
  28. See the `global-undo-tree-mode' command
  29. for a description of this minor mode.
  30. Setting this variable directly does not take effect;
  31. either customize it (see the info node `Easy Customization')
  32. or call the function `global-undo-tree-mode'.")
  33. (custom-autoload 'global-undo-tree-mode "undo-tree" nil)
  34. (autoload 'global-undo-tree-mode "undo-tree" "\
  35. Toggle Undo-Tree mode in all buffers.
  36. With prefix ARG, enable Global Undo-Tree mode if ARG is positive;
  37. otherwise, disable it. If called from Lisp, enable the mode if
  38. ARG is omitted or nil.
  39. Undo-Tree mode is enabled in all buffers where
  40. `turn-on-undo-tree-mode' would do it.
  41. See `undo-tree-mode' for more information on Undo-Tree mode.
  42. \(fn &optional ARG)" t nil)
  43. (if (fboundp 'register-definition-prefixes) (register-definition-prefixes "undo-tree" '("*undo-tree-id-counter*" "buffer-undo-tree" "turn-on-undo-tree-mode" "undo-")))
  44. ;;;***
  45. ;; Local Variables:
  46. ;; version-control: never
  47. ;; no-byte-compile: t
  48. ;; no-update-autoloads: t
  49. ;; coding: utf-8
  50. ;; End:
  51. ;;; undo-tree-autoloads.el ends here