Fork me on GitHub
#emacs
<
2021-08-26
>
Andrea12:08:02

Another question about cider: is there a way to make go-to-symbol understand hiccup's operators? In my setup it always go to the clojure > or < definitions XD

vemv13:08:47

what would be an example of symbol (keyword?) you want to jump to?

Andrea16:08:03

for example :<>

Andrea16:08:52

(it would be cool to get autocompletion also for javascript libraries by the way, but I think it is unlikely it is supported)

vemv16:08:37

I don't think there's support for unqualified keywords. Because a helper like the following:

(defn my-helper [foo bar]
  [:<> foo bar])
could be concerned with Hiccup just like it could be with honeysql, or anything else really

👍 3
vemv16:08:34

> (it would be cool to get autocompletion also for javascript libraries by the way, but I think it is unlikely it is supported) I don't know the exact status of things nowadays, but it seems possible to me. With modern javascript one can have stronger expectations than 10y ago

Andrea11:08:26

I shall check into that and report if I find something myself