Re: paredit+regex question

2014-03-05 Thread Phillip Lord
Erlis Vidal writes: > @Phillip: Wow! I'm wondering why paredit doesn't fix this issue. Thanks for > the patch! Because this syntax is specific to clojure and not all lisps! Hopefully, I'll get around to submitting a patch to paredit at some point. If not me, I am sure someone will do it! Phil

Re: paredit+regex question

2014-03-05 Thread Erlis Vidal
Hi all Thanks for all the replies. @Magnar: Thanks for the quick key combination I'll add that to my cheat sheet ;) @Phillip: Wow! I'm wondering why paredit doesn't fix this issue. Thanks for the patch! @Oleh: I will definitively will take a look at this, I'm starting with paredit and I'm liking

Re: paredit+regex question

2014-03-04 Thread Oleh
Hi Erlis, There's a full alternative to Paredit that I'm writing: https://github.com/abo-abo/lispy. Try it out if you haven't yet, it's got some Clojure support, like inline function arguments and jump-to-defintion (just a binding for cider-jump-to-def, really, but it's just one letter: "F").

Re: paredit+regex question

2014-03-04 Thread Phillip Lord
Erlis Vidal writes: > Hi this is not a clojure question but I'm sure some one on this list can > help me. > > I'm trying to write a regex using paredit and it looks like I cannot write > something like this > > #"mypattern \d" > > whenever I type the character \ I see the text "Escaping character

Re: paredit+regex question

2014-03-03 Thread Magnar Sveen
I found this particularly annoying myself, and turned it off. You can see the code in my emacs config . If you don't want to mess around with how paredit works, you can always insert any character with C-q - Magnar On

paredit+regex question

2014-03-03 Thread Erlis Vidal
Hi this is not a clojure question but I'm sure some one on this list can help me. I'm trying to write a regex using paredit and it looks like I cannot write something like this #"mypattern \d" whenever I type the character \ I see the text "Escaping character..." in the minibuffer. It is waiting