Skip to content

Commit

Permalink
add nrepl 2
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingmachine committed Nov 13, 2013
1 parent aa272f3 commit 9f837c7
Show file tree
Hide file tree
Showing 4 changed files with 3,516 additions and 0 deletions.
59 changes: 59 additions & 0 deletions elpa/nrepl-0.2.0/nrepl-autoloads.el
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
1 change: 1 addition & 0 deletions elpa/nrepl-0.2.0/nrepl-pkg.el
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 added elpa/nrepl-0.2.0/nrepl-pkg.elc
Binary file not shown.
Loading

0 comments on commit 9f837c7

Please sign in to comment.