Fork me on GitHub
#conjure
<
2020-12-08
>
martinklepsch12:12:59

Has it been considered to use babashka for stuff like go-to-definition when the built in methods aren’t set up? (e.g. there’s no cljs REPL connection)

borkdude12:12:00

@martinklepsch There is such a thing for emacs based on clj-kondo: https://github.com/didibus/anakondo

👌 3
borkdude12:12:25

Vim iced is also doing something similar when clj-kondo is available on the system path

Olical12:12:38

Oh interesting!

Olical12:12:39

So one shot BB calls? Or running a bb REPL for an extended period?

martinklepsch13:12:22

ah yeah, no idea why I was saying babashka, this is more a clj-kondo thing I guess 😅

borkdude13:12:13

Btw, from the babashka survey some people used babashka to integrate with vim or emacs to do some linux window manager stuff

mozinator218:12:24

It's probably been asked a lot. How can I make vim recognize .bb files as clojure ?

dave18:12:31

here's a slightly modified version of what i have in my vimrc:

augroup clojure_filetypes
  autocmd!
  autocmd BufNewFile,BufRead  *.cljs.hl,*.boot,*.bb set filetype=clojure
augroup END

👍 3
dave18:12:54

no prob!