Skip to content
This repository was archived by the owner on Jun 2, 2025. It is now read-only.

Is this expected behavior? #25

@NightMachinery

Description

@NightMachinery

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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions