Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Moved auto-connect options with the other ones.
  • Loading branch information
blais committed Aug 4, 2012
1 parent be377d3 commit 83fb9ef
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions nrepl.el
Expand Up @@ -63,6 +63,15 @@
(defvar nrepl-version "0.1.3-preview"
"The current nrepl version.")

(defvar nrepl-host "localhost"
"Default value for hostname to connect to.")

(defvar nrepl-port 4006
"Default value for port to connect to.")

(defvar nrepl-auto-reconnect nil
"Attempt to reconnect automatically if the connection has failed.")

(defface nrepl-prompt-face
'((t (:inherit font-lock-keyword-face)))
"Face for the prompt in the nREPL client."
Expand Down Expand Up @@ -1445,15 +1454,5 @@ Silently returns nil on failure to reconnect."
(nrepl-init-repl-buffer process nrepl-buffer)))


(defvar nrepl-host "localhost"
"Default value for hostname to connect to.")

(defvar nrepl-port 4006
"Default value for port to connect to.")

(defvar nrepl-auto-reconnect nil
"Attempt to reconnect automatically if the connection has failed.")


(provide 'nrepl)
;;; nrepl.el ends here

0 comments on commit 83fb9ef

Please sign in to comment.