Fork and improvement to Emac's evil-paredit-mode

Dylan Jeffers 7c153eaff1 Add TODO, org-mode support 7 years ago
LICENSE f15c0ce783 Update LICENSE 10 years ago
README.org 7c153eaff1 Add TODO, org-mode support 7 years ago
evil-paredit.el eac30258f7 Add useful utility commands 7 years ago

README.org

* evil-paredit This package helps you to not screw up your paredit setup when using evil-mode. In order to accomplish this whenever you try to use a modifier command like "d, c, y", to modify the paredit buffer, it will stop you to do so in the case you break the parity of parenthesis. ** Installation + Install via [el-get](https://github.com/dimitri/el-get/) + Install via melpa ** Setup ```elisp (add-hook 'emacs-lisp-mode-hook 'evil-paredit-mode) ``` ** TODO: *** Command to connect hanging parens Example: (define (something) #f ) To: (define (something) #f)