org-install.el 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ;;; org-install.el --- Autoloads for org.el
  2. ;; org.el
  3. (autoload 'org-mode "org" "Org mode" t)
  4. (autoload 'org-diary "org" "Diary entries from Org mode.")
  5. (autoload 'org-agenda "org" "Multi-file agenda from Org mode." t)
  6. (autoload 'org-store-link "org" "Store a link to the current location." t)
  7. (autoload 'org-open-at-point-global "org" "Follow a link like Org-mode does." t)
  8. (autoload 'org-insert-link-global "org" "Insert a link like Org-mode does." t)
  9. (autoload 'orgtbl-mode "org" "Org tables as a minor mode." t)
  10. (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode.")
  11. (autoload 'orgstruct-mode "org" "Org structure as a minor mode." t)
  12. (autoload 'turn-on-orgstruct "org" "Org structure as a minor mode.")
  13. (autoload 'turn-on-orgstruct++ "Orgstruct-mode with indentation settings.")
  14. (autoload 'org-cycle "org" "Subtree visibility cycling." t)
  15. (autoload 'org-global-cycle "org" "Global visibility cycling." t)
  16. (autoload 'org-agenda-list "org" "Produce calendar-like agenda view." t)
  17. (autoload 'org-cycle-agenda-files "org" "Cycle through agenda-files." t)
  18. (autoload 'org-todo-list "org" "Produce global TODO list." t)
  19. (autoload 'org-tags-view "org" "Produce global TAGS agenda view." t)
  20. (autoload 'org-agenda-list-stuck-projects "org" "List stuck projects." t)
  21. (autoload 'org-remember "org" "Call remember or re-apply template" t)
  22. (autoload 'org-remember-annotation "org")
  23. (autoload 'org-remember-apply-template "org")
  24. (autoload 'org-remember-handler "org")
  25. (autoload 'org-export-icalendar-all-agenda-files "org"
  26. "Export all files in `org-agenda-files' to iCalendar .ics files." t)
  27. (autoload 'org-export-icalendar-combine-agenda-files "org"
  28. "Export all files in `org-agenda-files' to a single combined iCalendar file." t)
  29. (autoload 'org-run-like-in-org-mode "Run a command like in Org-mode.")
  30. (autoload 'org-agenda-to-appt "Activate appointments in `org-agenda-files'.")
  31. ;; org-latex.el
  32. (autoload 'org-export-as-latex-batch "org-export-latex")
  33. (autoload 'org-export-as-latex-to-buffer "org-export-latex"
  34. "Call `org-exort-as-latex` with output to a temporary buffer" t)
  35. (autoload 'org-replace-region-by-latex "org-export-latex"
  36. "Replace the region from BEG to END with its LaTeX export." t)
  37. (autoload 'org-export-region-as-latex "org-export-latex"
  38. "Convert region from BEG to END in `org-mode' buffer to LaTeX." t)
  39. (autoload 'org-export-as-latex "org-export-latex"
  40. "Export current buffer to a LaTeX file." t)
  41. (autoload 'org-batch-agenda "org")
  42. (autoload 'org-batch-agenda-csv "org")
  43. (autoload 'org-store-agenda-views "org" "Store agenda views to files" t)
  44. (autoload 'org-batch-store-agenda-views "org")
  45. ;; org-publish.el
  46. (autoload 'org-publish-current-file "org-publish" "Publish current file." t)
  47. (autoload 'org-publish-current-project "org-publish"
  48. "Publish all files of current project." t)
  49. (autoload 'org-publish "org-publish" "Publish a project." t)
  50. (autoload 'org-publish-all "org-publish" "Publish all projects." t)
  51. ;; org-toc.el
  52. (autoload 'org-toc-show "org-toc" "Create and display a table of contents" t)
  53. (provide 'org-install)