summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-06-24 11:31:30 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-06-24 11:31:30 +0300
commit3098f427dc846fda006fad3029836c142cdd8dbf (patch)
treec42d6d5030da3e9519f893178032a3d82f8c8828 /cider-mode.el
parent5a75a3e234f1aefb6696260d5a67ec5014b2c8e5 (diff)
[#2203] Extract the find functionality in its own source file
This also allows to simply auto-load the find commands when they are used for the first time. cider-jump-to is moved to cider-common.el, as it has other uses, apart from the ones in the various find commands.
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/cider-mode.el b/cider-mode.el
index 4e5091a7..df1fd58f 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -428,6 +428,9 @@ If invoked with a prefix ARG eval the expression after inserting it."
(declare-function cider-toggle-trace-ns "cider-tracing")
(declare-function cider-toggle-trace-var "cider-tracing")
(declare-function cider-refresh "cider-refresh")
+(declare-function cider-find-resource "cider-find")
+(declare-function cider-find-ns "cider-find")
+(declare-function cider-find-keyword "cider-find")
(defconst cider-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-c C-d") 'cider-doc-map)