my-emacs-d/elpa/clojure-mode-20161004.2314/clojure-mode-autoloads.el

122 lines
3.0 KiB
EmacsLisp
Raw Normal View History

2016-09-22 16:37:03 +00:00
;;; clojure-mode-autoloads.el --- automatically extracted autoloads
;;
;;; Code:
2016-10-05 11:56:57 +00:00
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
2016-09-22 16:37:03 +00:00
2016-10-05 11:56:57 +00:00
;;;### (autoloads nil "clojure-mode" "clojure-mode.el" (22516 57909
;;;;;; 485546 83000))
2016-09-22 16:37:03 +00:00
;;; Generated autoloads from clojure-mode.el
(autoload 'clojure-mode "clojure-mode" "\
Major mode for editing Clojure code.
\\{clojure-mode-map}
\(fn)" t nil)
(autoload 'clojure-unwind "clojure-mode" "\
Unwind thread at point or above point by one level.
Return nil if there are no more levels to unwind.
\(fn)" t nil)
(autoload 'clojure-unwind-all "clojure-mode" "\
Fully unwind thread at point or above point.
\(fn)" t nil)
(autoload 'clojure-thread "clojure-mode" "\
Thread by one more level an existing threading macro.
\(fn)" t nil)
(autoload 'clojure-thread-first-all "clojure-mode" "\
Fully thread the form at point using ->.
When BUT-LAST is passed the last expression is not threaded.
\(fn BUT-LAST)" t nil)
(autoload 'clojure-thread-last-all "clojure-mode" "\
Fully thread the form at point using ->>.
When BUT-LAST is passed the last expression is not threaded.
\(fn BUT-LAST)" t nil)
(autoload 'clojure-cycle-privacy "clojure-mode" "\
Make public the current private def, or vice-versa.
See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-cycle-privacy
\(fn)" t nil)
(autoload 'clojure-convert-collection-to-list "clojure-mode" "\
Convert collection at (point) to list.
\(fn)" t nil)
(autoload 'clojure-convert-collection-to-quoted-list "clojure-mode" "\
Convert collection at (point) to quoted list.
\(fn)" t nil)
(autoload 'clojure-convert-collection-to-map "clojure-mode" "\
Convert collection at (point) to map.
\(fn)" t nil)
(autoload 'clojure-convert-collection-to-vector "clojure-mode" "\
Convert collection at (point) to vector.
\(fn)" t nil)
(autoload 'clojure-convert-collection-to-set "clojure-mode" "\
Convert collection at (point) to set.
\(fn)" t nil)
(autoload 'clojure-cycle-if "clojure-mode" "\
Change a surrounding if to if-not, or vice-versa.
See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-cycle-if
\(fn)" t nil)
(autoload 'clojurescript-mode "clojure-mode" "\
Major mode for editing ClojureScript code.
\\{clojurescript-mode-map}
\(fn)" t nil)
(autoload 'clojurec-mode "clojure-mode" "\
Major mode for editing ClojureC code.
\\{clojurec-mode-map}
\(fn)" t nil)
(autoload 'clojurex-mode "clojure-mode" "\
Major mode for editing ClojureX code.
\\{clojurex-mode-map}
\(fn)" t nil)
(add-to-list 'auto-mode-alist '("\\.\\(clj\\|dtm\\|edn\\)\\'" . clojure-mode))
(add-to-list 'auto-mode-alist '("\\.cljc\\'" . clojurec-mode))
(add-to-list 'auto-mode-alist '("\\.cljx\\'" . clojurex-mode))
(add-to-list 'auto-mode-alist '("\\.cljs\\'" . clojurescript-mode))
(add-to-list 'auto-mode-alist '("\\(?:build\\|profile\\)\\.boot\\'" . clojure-mode))
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
;;; clojure-mode-autoloads.el ends here