-
Notifications
You must be signed in to change notification settings - Fork 38
Closed
Description
When using evil + shm with minimal configuration, most of shm does not appear to work correctly. For example if I write
f = foo bar
and I move my cursor so that bar is the current node and type C-j in order to make a new sibling, bar is split at the cursor position, for example
f = foo b
ar
Is it possible to configure evil to work with shm?
edit: github ate my whitespace here, but ar should be aligned with b.
edit: My .emacs config:
(require 'evil)
(require 'shm)
(evil-mode 1)
(add-hook 'haskell-mode-hook 'structured-haskell-mode)
AleXoundOS