File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1007,6 +1007,13 @@ CONTEXT represents a completion context for compliment."
1007
1007
(cider-nrepl-send-sync-request)
1008
1008
(nrepl-dict-get " ns-vars" )))
1009
1009
1010
+ (defun cider-sync-request:ns-path (ns )
1011
+ " Get the path to the file containing NS."
1012
+ (thread-first `(" op" " ns-path"
1013
+ " ns" , ns )
1014
+ (cider-nrepl-send-sync-request)
1015
+ (nrepl-dict-get " path" )))
1016
+
1010
1017
(defun cider-sync-request:ns-vars-with-meta (ns )
1011
1018
" Get a map of the vars in NS to its metadata information."
1012
1019
(thread-first `(" op" " ns-vars-with-meta"
Original file line number Diff line number Diff line change @@ -465,13 +465,6 @@ Invert meaning of `cider-prompt-for-symbol' if PREFIX indicates it should be."
465
465
(if (cider--prefix-invert-prompt-p prefix)
466
466
(not cider-prompt-for-symbol) cider-prompt-for-symbol))
467
467
468
- (defun cider-sync-request:ns-path (ns )
469
- " Get the path to the file containing NS."
470
- (thread-first `(" op" " ns-path"
471
- " ns" , ns )
472
- cider-nrepl-send-sync-request
473
- (nrepl-dict-get " path" )))
474
-
475
468
(defun cider--find-ns (ns &optional other-window )
476
469
" Find the file containing NS's definition.
477
470
Optionally open it in a different window if OTHER-WINDOW is truthy."
You can’t perform that action at this time.
0 commit comments