evil-cleverparens icon indicating copy to clipboard operation
evil-cleverparens copied to clipboard

Evil normal-state minor-mode for editing lisp-like languages

Results 31 evil-cleverparens issues
Sort by recently updated
recently updated
newest added

Just copies some code from the deletion logic into the yanking logic, really

Given ```lisp (+ 1 (+ 2 3 4 5)) ``` hitting `yy` on line 2 will copy the whitespace before the parens instead of the contents afterward. This surprising to...

evil-cp-change must move the cursor similar to evil-change e. g. ``` (|foo "bar") ``` evil-change will move the cursor when pressing ci" into the double quote, while evil-cp-change will keep...

In regular evil and vim, `cw` in this case: ``` foo |bar baz ``` Will drop you into insert in: ``` foo | baz ``` In evil-cp, it seems to...

After downloading emacs following http://eschulte.github.io/emacs24-starter-kit/#emacs-lisp-package-archive, I now want to enable Melpa. The below is what I typed into an org document under the directory emacs.d : #+BEGIN_SRC emacs-lisp (require 'package)...

The documentation for evil-cp-additional-bindings says: "Alist containing additional functionality for evil-cleverparens via a modifier key (using the meta-key by default)." Is it possible to change the modifier key to (say)...

Evil-unimpared uses `[-` and `]-` to add spaces above and below the current line, but when you add evil-cleverparens-mode to the clojure-mode hook it clobbers the whole prefix space with...

It's not in `Evil Cleverparens Use Additional Bindings` or `Evil Cleverparens Use Additional Movement Keys`. I'm using hook to disable it to get `evil-shift` back.

Hi, how can I customize `evil-cp-a-form` to select text surrounded by single quotes?

Hey, first of all thanks for this package, I think it's great. I noticed a slightly annoying behavior for `evil-cp-forward-sexp` and `evil-cp-backward-sexp` (L and H). Consider this elisp file (`|`...