This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-05-16
Channels
- # admin-announcements (3)
- # arachne (9)
- # beginners (10)
- # boot (56)
- # cider (4)
- # cljs-dev (5)
- # cljsjs (4)
- # cljsrn (3)
- # clojure (146)
- # clojure-austin (9)
- # clojure-greece (3)
- # clojure-poland (14)
- # clojure-russia (1)
- # clojure-uk (19)
- # clojurescript (46)
- # cursive (16)
- # datomic (21)
- # emacs (38)
- # events (2)
- # flambo (1)
- # garden (3)
- # hoplon (41)
- # jobs (1)
- # keechma (87)
- # off-topic (2)
- # om (62)
- # om-next (4)
- # other-languages (7)
- # pedestal (6)
- # protorepl (1)
- # reagent (3)
- # rethinkdb (1)
- # ring-swagger (1)
- # rum (3)
- # spacemacs (2)
- # specter (12)
- # test200 (2)
- # untangled (12)
anyone using lispy-mode ?
[ and ] are bound making it impossible to write actual clojure code
@peeja: did you find a workaround to this bug?
@brian_mingus: It's not a bug: }
inserts [
in lispy
i tried to redefine those keys to j and l (lispy-define-key lispy-mode-map "j" 'lispy-forward)
doesn't work 😞
seems it adds additional bindings and keeps the old ones as well
Well, for one thing, I wouldn't redefine j
and l
, as they're pretty important to the main lispy bindings already
i use M-i,j,k,l for winmove up, left, right, down (shortcuts used in gaming)
so it is super weird for lispy to overload the meanings to be different..
i think i won't be able to use lispy-mode until i can tell it to undefine a shortcut, not just add additional ones
yeah i just need to be able to define my own keys, which i can do
what i can't do is undefine keys
It's totally valid to want different bindings, I'm just saying it's not "super weird" for lispy to be using HJKL in the first place
i don't use vim, and i need i,k to be up,down, and j,l to be left, right, and i really don't want that goofy [ ] behavior
and i imagine i'll want to customize other things
But, the second thing is that [
and ]
are different from most Lispy bindings: they always apply, not just when the point is special
All that said, themes may be what you're after: https://github.com/abo-abo/lispy/blob/e409298214ce88ed29bcf348177c39ba4ed3a61d/lispy.el#L8290
@peeja thanks
does anyone know a package that lets you convert json into edn and vice-versa? I don’t wanna waste time writing one and then find out there’s better alternative out there
@brian_mingus: I was asking about Emacs package not clojure lib
oh, what's that for?
call clojure and ask it to do it...
there are also python libs that can do it