2

I'm trying to understand whether I'm not using cider properly or that's how it works and I have to get used to it.

Steps to reproduce:

Load the following ns/file/buffer into a running cider repl:

(ns app.domain)
(defn my-func [])

Switch to another ns via (in-ns 'app.foo) then start typing app.domain/ and it doesn't show any available options(I expect my-func autocompletion).

It shows my-func autocomplete option only after I type the first character - m.

apangin
  • 92,924
  • 10
  • 193
  • 247
BinaryButterfly
  • 18,137
  • 13
  • 50
  • 91

1 Answers1

2

That's what I've found:

CIDER / Using CIDER / Code Completion

When you press TAB or M-TAB you’ll get completion candidates in a dedicated buffer.

In my case it was M-Tab(probably because of evil-mode?).

BinaryButterfly
  • 18,137
  • 13
  • 50
  • 91