Paredit icon indicating copy to clipboard operation
Paredit copied to clipboard

Light Table plugin for paredit ⛺

Results 10 Paredit issues
Sort by recently updated
recently updated
newest added

Captured from the Clojurians Slack, user manenko: Paredit mode isn't strict enough. Or maybe I just didn't setup it right :slightly_smiling_face: For example, I can put my cursor `|` between...

This is a meta issue to port handy paredit functions from [paredit-plus](https://github.com/otijhuis/paredit-plus). We need to have one well-maintained plugin we can all rely on. Features that should be ported (list...

``` //example 1 [ [ xxxx ] xx|xx [ xxxx ] ] //go to next [ [ xxxx ] xxxx |[ xxxx ] ] //example 2 [ xxxx [ xx|xx...

Typing `"` with in a string token should insert `\"` instead of `"`. See details: http://youtu.be/D6h5dFyyUX0?t=2m33s

Here is example: ``` clj (defn my-command [] (|)(a) (b) (c) (d)) ``` After grow right four times expected result is: ``` clj (defn my-command [] (|(a) (b) (c) (d)))...

My user keymap binds "ctrl-shift-0" to :paredit.grow.right . This is the usual emacs command for forward slurp. When I try using the key binding in an editor, though, it doesn't...

While developing I oven had strange non matching endings of functions. I investigated and found the following problem. `{:data (+ 1) 2}` You want to get this `{:data (+ 1...

(:thing2 (:thing3)) Grow left gives: ((:thing2 :thing3)) But then shrink left does nothing