about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/wpc-clojure.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·28+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·28+0100
commita2d45c8db75a5656d8ba7ef2c88fb532f4b41805 (patch)
tree481349d86249ffa0f4114f7fd7520dfb2c54ca2e /emacs/.emacs.d/wpc/wpc-clojure.el
parent28cdbb18b69a6d33af37fc753c422b1bf6547a30 (diff)
Lint wpc-clojure.el
- change clojure.el to wpc-clojure.el
- delete stale, commented code
- add Configuration header
- add Version, URL, Package-Requires sections
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-clojure.el')
-rw-r--r--emacs/.emacs.d/wpc/wpc-clojure.el47
1 files changed, 10 insertions, 37 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-clojure.el b/emacs/.emacs.d/wpc/wpc-clojure.el
index 18d0952384..db1b3be9bf 100644
--- a/emacs/.emacs.d/wpc/wpc-clojure.el
+++ b/emacs/.emacs.d/wpc/wpc-clojure.el
@@ -1,37 +1,18 @@
-;;; clojure.el --- My Clojure preferences -*- lexical-binding: t -*-
+;;; wpc-clojure.el --- My Clojure preferences -*- lexical-binding: t -*-
+
 ;; Author: William Carroll <wpcarro@gmail.com>
+;; Version: 0.0.1
+;; URL: https://git.wpcarro.dev/wpcarro/briefcase
+;; Package-Requires: ((emacs "25.1"))
 
 ;;; Commentary:
 ;; Hosting my Clojure tooling preferences
 
 ;;; Code:
 
-;; Helper functions
-
-;; (defun wpc/buffer-name-for-clojure-mode (mode)
-;;   (let* ((project-name (projectile-project-name))
-;;          (cljs-name (concat "*cider-repl CLJS " project-name "*"))
-;;          (clj-name  (concat "*cider-repl " project-name "*")))
-;;     (cond ((eq mode 'clojurescript-mode) cljs-name)
-;;           ((eq mode 'clojure-mode) clj-name)
-;;           ((eq mode 'clojurec-mode) cljs-name))))
-
-;; (defun wpc/repl-function-for-clojure-mode (mode)
-;;   (let ((project-name (projectile-project-name))
-;;         (cljs-fn #'cider-jack-in-clojurescript)
-;;         (clj-fn  #'cider-jack-in))
-;;     (cond ((eq mode 'clojurescript-mode) cljs-fn)
-;;           ((eq mode 'clojure-mode) clj-fn)
-;;           ((eq mode 'clojurec-mode) cljs-fn))))
-
-;; (defun wpc/find-or-create-clojure-or-clojurescript-repl ()
-;;   (interactive)
-;;   (with-current-buffer (current-buffer)
-;;     (let ((buffer-name   (wpc/buffer-name-for-clojure-mode major-mode))
-;;           (repl-function (wpc/repl-function-for-clojure-mode major-mode)))
-;;       (if (get-buffer buffer-name)
-;;           (switch-to-buffer buffer-name)
-;;         (funcall repl-function)))))
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Configuration
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 (use-package clojure-mode
   :config
@@ -71,9 +52,7 @@
     "C-l"    #'cider-repl-clear-buffer
     "C-u"    #'kill-whole-line
     "<up>"   #'cider-repl-previous-input
-    "<down>" #'cider-repl-next-input
-    ;; "C-c 'j" #'wpc/find-or-create-clojure-or-clojurescript-repl
-    )
+    "<down>" #'cider-repl-next-input)
   (general-define-key
    :keymaps 'clojure-mode-map
    :states '(normal)
@@ -81,13 +60,7 @@
    "x" #'cider-eval-defun-at-point
    "X" #'cider-eval-buffer
    "d" #'cider-symbol-at-point)
-  (setq cider-prompt-for-symbol nil)
-  ;; (setq cider-cljs-lein-repl
-  ;;       "(do (require 'figwheel-sidecar.repl-api)
-  ;;            (figwheel-sidecar.repl-api/start-figwheel!)
-  ;;            (figwheel-sidecar.repl-api/cljs-repl))"
-  ;;       cider-prompt-for-symbol nil)
-  )
+  (setq cider-prompt-for-symbol nil))
 
 (provide 'wpc-clojure)
 ;;; wpc-clojure.el ends here