paredit icon indicating copy to clipboard operation
paredit copied to clipboard

A paredit mode for lisps in Sublime Text.

Results 12 paredit issues
Sort by recently updated
recently updated
newest added

``` (let [items (vec (map-indexed render items)] whatever) ``` I can't finds _any_ way to fix this code without disabling the entire plugin. Do I miss something? This kind of...

Hi, I've added the ability to expand the selection when moving with `paredit_forward` or `paredit_backward`. I have `ctrl+left` and `ctrl+right` bound to these commands and so I found that I...

The README doesn't say that these depth-changing commands aren't implemented. I've found them to be really useful.

With `(a |b c)`, expected `(a (|) b c)`, got `(a (|)b c)`. The only conflicting keybinding for `(` is the default one from sublime text. Any idea?

This updates the viewport when the cursor (selection) is moving out the viewport

It would be nice if I could perform the following slurpage (via two forward slurps): ``` (let [x |])(+ 1 2) (let [x |(+ 1 2)]) ``` But after the...

A cheatsheet specific for this version of paredit would be very nice, as some shortcuts are not the same as in the original paredit. Relevant issues: #3 #10

``` (defn f1 [coll f x] (conj (map f coll) x)) ``` If you select `x]` and press delete, you get: ``` (defn f1 [coll f (conj (map f coll)...