org-install.el 2.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ;;; org-install.el --- Autoloads for org.el
  2. (autoload 'org-mode "org" "Org mode" t)
  3. (autoload 'org-diary "org" "Diary entries from Org mode.")
  4. (autoload 'org-agenda "org" "Multi-file agenda from Org mode." t)
  5. (autoload 'org-store-link "org" "Store a link to the current location." t)
  6. (autoload 'orgtbl-mode "org" "Org tables as a minor mode." t)
  7. (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode.")
  8. (autoload 'orgstruct-mode "org" "Org structure as a minor mode." t)
  9. (autoload 'turn-on-orgstruct "org" "Org structure as a minor mode.")
  10. (autoload 'org-cycle "org" "Subtree visibility cycling." t)
  11. (autoload 'org-global-cycle "org" "Global visibility cycling." t)
  12. (autoload 'org-agenda-list "org" "Produce calendar-like agenda view." t)
  13. (autoload 'org-cycle-agenda-files "org" "Cycle through agenda-files." t)
  14. (autoload 'org-todo-list "org" "Produce global TODO list." t)
  15. (autoload 'org-tags-view "org" "Produce global TAGS agenda view." t)
  16. (autoload 'org-agenda-list-stuck-projects "org" "List stuck projects." t)
  17. (autoload 'org-remember "org" "Call remember or re-apply template" t)
  18. (autoload 'org-remember-annotation "org")
  19. (autoload 'org-remember-apply-template "org")
  20. (autoload 'org-remember-handler "org")
  21. (autoload 'org-export-icalendar-all-agenda-files "org"
  22. "Export all files in `org-agenda-files' to iCalendar .ics files." t)
  23. (autoload 'org-export-icalendar-combine-agenda-files "org"
  24. "Export all files in `org-agenda-files' to a single combined iCalendar file." t)
  25. (autoload 'org-batch-agenda "org")
  26. (autoload 'org-batch-agenda-csv "org")
  27. (autoload 'org-store-agenda-views "org" "Store agenda views to files" t)
  28. (autoload 'org-batch-store-agenda-views "org")
  29. (autoload 'org-publish-current-file "org-publish" "Publish current file." t)
  30. (autoload 'org-publish-current-project "org-publish"
  31. "Publish all files of current project." t)
  32. (autoload 'org-publish "org-publish" "Publish a project." t)
  33. (autoload 'org-publish-all "org-publish" "Publish all projects." t)
  34. (provide 'org-install)