Fork me on GitHub
#emacs
<
2018-07-13
>
psdp04:07:47

hi, I am having an issue with CIDER not showing auto completions right after / of a ns, it works fine tho only when I start tying something after /, but I want it to show a list of all available completions of a ns immediately after just / without having to type in any additions. anyone knows how to fix it? thanks for help

callum06:07:25

@psdp I had the same frustration and the following is solving that well enough for me for now

;; use Company when forcing completion with TAB
(global-set-key (kbd "TAB") #'company-indent-or-complete-common)
Keen to hear some full solutions to this problem, though

👍 4
psdp06:07:42

@callum thanks for that!