I am using emacs for learning clojure. I have leiningen installed. This is how my general workflow goes :
Open eshell
in emacs
run lein new myapp
cd myapp\src\myapp\core.clj
write some code.
M-x cider-jack-in
to open the repl
Now when i try C-c C-k
to load the file in the repl, it does not go in that but instead in the small emacs command window.
My functions are also not visible in the repl.
How do i connect the clojure mode to the repl created with cider-jack-in
?