This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-01-02
Channels
- # babashka (117)
- # babashka-sci-dev (6)
- # beginners (34)
- # biff (2)
- # calva (7)
- # clj-kondo (27)
- # clojure (6)
- # clojure-dev (8)
- # clojure-europe (41)
- # clojure-israel (1)
- # clojure-nl (1)
- # clojure-norway (2)
- # clojure-uk (1)
- # clojurescript (22)
- # cursive (3)
- # datascript (12)
- # dev-tooling (4)
- # emacs (13)
- # hyperfiddle (60)
- # introduce-yourself (8)
- # joyride (9)
- # lsp (46)
- # malli (3)
- # mranderson (75)
- # off-topic (40)
- # pathom (9)
- # pedestal (4)
- # reagent (11)
- # reitit (18)
- # releases (2)
- # shadow-cljs (81)
- # squint (18)
what is the shortcut key to move one function inside the another function without copying , saw such things in intellj
() (+ 1 3) => ((+ 1 3)) ;; Here I am just writing what I wanted, not evaluating it
There are two ways to do this, depending on where the cursor is. If it is within the empty parens you can slurp forward. If your cursor is outside (but ”touching”) the (+ 1 3)
expression, you can drag backward down. Check the command palette or the keyboard shortcuts editor for the bindings.
Hello, I am migrating from cider to calva. In cider, I was used to have multiple emacs windows connected to the same repl. In calva, when I open a new window, then navigate to my project workspace, I see “Repl: disconnected”, because the calva process seems bound to the vscode window. Can I get around that issue?
oh yeah that works, thank you