diff --git a/dev/user.clj b/dev/user.clj index 7481e42..4bdfd12 100644 --- a/dev/user.clj +++ b/dev/user.clj @@ -2,5 +2,5 @@ (:require [clojure.repl :refer :all] [clojure.tools.namespace.repl :refer (refresh refresh-all)] - tmx.core)) + [tmx.core :refer :all])) diff --git a/src/tmx/core.clj b/src/tmx/core.clj index d8d43bd..46ce83a 100644 --- a/src/tmx/core.clj +++ b/src/tmx/core.clj @@ -34,7 +34,7 @@ (edn/read-string (slurp f)))) ([& ks] (get-in (configuration) ks))) -(defn help [] +(defn help- [] (println " Usage: tmx start {profile} - start a tmux profile @@ -60,8 +60,8 @@ Usage: (case (first args) "start" (launch (second args)) "version" (version) - "help" (help) - nil (help)) + "help" (help-) + nil (help-)) (catch Exception e (stderr e) (exit 1))))