We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba66955 commit 977af2aCopy full SHA for 977af2a
cider-interaction.el
@@ -641,9 +641,10 @@ added as a prefix to the LOCATION."
641
"Return a list of completions for STR.
642
Dispatch to the nREPL \"complete\" op if supported,
643
otherwise dispatch to internal completion function."
644
- (if (nrepl-op-supported-p "complete")
645
- (cider-completion-complete-op-fn str)
646
- (cider-completion-complete-core-fn str)))
+ (let ((str (substring-no-properties str)))
+ (if (nrepl-op-supported-p "complete")
+ (cider-completion-complete-op-fn str)
647
+ (cider-completion-complete-core-fn str))))
648
649
(defun cider-complete-at-point ()
650
"Complete the symbol at point."
0 commit comments