on-parens

https://github.com/willghatch/emacs-on-parens.git

git clone 'git://github.com/willghatch/emacs-on-parens.git'
1

MELPA

on-parens

A wrapper for smartparens to give smartparens/paredit style commands for use in evil-normal-state.

Why?

In vi/vim/evil-mode in normal-state, the cursor is viewed as being ON a character rather than BETWEEN characters. This breaks smartparens particularly when it tries to put you past the last character of the line, since normal-state will push point back one character so it can be viewed as on the last character rather than past it. Additionally, most vim/evil movements go to the beginning of a text object, with an alternative version that goes to the end. Emacs tends to go past the end of things when it goes forward, but to the beginning when it goes back.

This provides movements for normal-state that go forward and back to specifically the beginning or end of sexps, as well as up or down.

As far as on-paren commands are concerned, if you are on a paren, you are on that sexp, and not in it. Therefore, on-parens-forward-sexp will put you on the next open paren, open string delimiter, or start of symbol on the same level. on-parens-up-sexp-end will put you on the close paren of the sexp you were inside of, etc. () is an empty list, so clearly your cursor isn't in it, it is on it.

These movements also make various insertion and deletion commands convenient – inserting at the start of the current level is <on-parens-up-sexp>a, appending at the end of the current level is <on-parens-up-sexp-end>i. Deleting a balanced sexp on the current level is d<on-parens-forward-sexp>. Deleting to the end of the level is d<on-parens-up-sexp-end>.

Commands

For movement we have:

Editing commands:

The editing commands probably do what you expect, they only differ from smartparens in which sexp they operate on when run on top of an opening or closing delimiter. on-parens-kill-sexp is actually pretty useless in normal state, because we have d<your keybinding for on-parens-forward-sexp here>, just like we would use dw. Numeric arguments work as expected.

Issues

It doesn't play with strings as nicely – some of the movement commands get confused when run in strings. There may be other issues – frankly I threw this together quickly just to get the functionality for myself, and I employed a few hacks. All the real legwork is done in smartparens, however, so there is some mature code underneath this plugin. This plugin is mostly to alter the functionality of annoying corner cases where the philosophies of emacs and vim/evil butt heads.

Recommendations

Install

Requires Emacs version 24.

Install from Melpa or clone this repo into your load path and run (require 'on-parens) in your initialization.

License

GPLv3+

Enjoy