clojure-emacs/cljs-tooling

Is this expected behavior?

NightMachinery opened this issue · 5 comments

Putting the caret at |:

(ns withering-spell.views
  (:require [re-frame.core :as re-frame]))

(defn main-panel []
  (let [name (re-frame/subscribe [:name])]
    (fn []
      [:div
       [:h1.lion "Headline"]
       [:ul
        (for [x (range 1 4)]
          [:li x])]
       [:div "Hi"]
       [:ul
        [:li "Cat is coming"]]
       [:button {:on-click #(re-frame/|)}]
       "I am your Death. Hello from " @name]
      )))

And pressing tab returns no completions. The ns form is loaded. Is this expected behavior? Default clojure.core things do auto-complete (like map).

gtrak commented

Cljs-tooling I think relies on load-file having been run, not evaling the ns form on its own over the repl, did you give that a try?

gtrak commented

Try cider-load-file, I think it's C-c C-k?

autogenerated with https://github.com/MalloZup/doghub: issue inactive since 450 days. Please update the issue or close it