diff options
Diffstat (limited to 'custom')
-rw-r--r-- | custom/jao-custom-programming.el | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/custom/jao-custom-programming.el b/custom/jao-custom-programming.el index 6f31711..b88c43c 100644 --- a/custom/jao-custom-programming.el +++ b/custom/jao-custom-programming.el @@ -261,12 +261,15 @@ (defconst jao-kaocha-compilation-error '(kaocha-error "^FAIL in \\(.+\\.\\)[^ ]+ (\\([^:]+\\.clj[cs]?\\):\\([0-9]+\\))" - jao-kaocha-file-name 3))) + jao-kaocha-file-name 3)) -(use-package compile - :config - (add-to-list 'compilation-error-regexp-alist-alist - jao-kaocha-compilation-error)) + (use-package compile + :config + (add-to-list 'compilation-error-regexp-alist-alist + jao-kaocha-compilation-error))) + +(use-package jao-clojure + :bind (:map clojure-mode-map (("C-c o" . jao-clojure-other-file)))) (use-package cider :ensure t |