forked from flyingmachine/emacs-for-clojure
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aa272f3
commit 9f837c7
Showing
4 changed files
with
3,516 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
;;; nrepl-autoloads.el --- automatically extracted autoloads | ||
;; | ||
;;; Code: | ||
|
||
|
||
;;;### (autoloads (nrepl nrepl-jack-in nrepl-disable-on-existing-clojure-buffers | ||
;;;;;; nrepl-enable-on-existing-clojure-buffers nrepl-interaction-mode) | ||
;;;;;; "nrepl" "nrepl.el" (21123 40973 0 0)) | ||
;;; Generated autoloads from nrepl.el | ||
|
||
(autoload 'nrepl-interaction-mode "nrepl" "\ | ||
Minor mode for nrepl interaction from a Clojure buffer. | ||
\\{nrepl-interaction-mode-map} | ||
\(fn &optional ARG)" t nil) | ||
|
||
(autoload 'nrepl-enable-on-existing-clojure-buffers "nrepl" "\ | ||
Enable interaction mode on existing Clojure buffers. | ||
See command `nrepl-interaction-mode'. | ||
\(fn)" t nil) | ||
|
||
(autoload 'nrepl-disable-on-existing-clojure-buffers "nrepl" "\ | ||
Disable interaction mode on existing Clojure buffers. | ||
See command `nrepl-interaction-mode'. | ||
\(fn)" t nil) | ||
|
||
(autoload 'nrepl-jack-in "nrepl" "\ | ||
Start a nREPL server for the current project and connect to it. | ||
If PROMPT-PROJECT is t, then prompt for the project for which to | ||
start the server. | ||
\(fn &optional PROMPT-PROJECT)" t nil) | ||
|
||
(add-hook 'nrepl-connected-hook 'nrepl-enable-on-existing-clojure-buffers) | ||
|
||
(autoload 'nrepl "nrepl" "\ | ||
Connect nrepl to HOST and PORT. | ||
\(fn HOST PORT)" t nil) | ||
|
||
(eval-after-load 'clojure-mode '(progn (define-key clojure-mode-map (kbd "C-c M-j") 'nrepl-jack-in) (define-key clojure-mode-map (kbd "C-c M-c") 'nrepl))) | ||
|
||
;;;*** | ||
|
||
;;;### (autoloads nil nil ("nrepl-pkg.el") (21123 40973 437794 0)) | ||
|
||
;;;*** | ||
|
||
(provide 'nrepl-autoloads) | ||
;; Local Variables: | ||
;; version-control: never | ||
;; no-byte-compile: t | ||
;; no-update-autoloads: t | ||
;; coding: utf-8 | ||
;; End: | ||
;;; nrepl-autoloads.el ends here |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
(define-package "nrepl" "0.2.0" "Client for Clojure nREPL" (quote ((clojure-mode "2.0.0") (cl-lib "0.3") (dash "2.1.0") (pkg-info "0.1")))) |
Binary file not shown.
Oops, something went wrong.