expez / evil-smartparens

Evil integration for Smartparens
GNU General Public License v3.0
134 stars 17 forks source link

evil-smartparens not playing nice with linewise operations #22

Closed chrispickard closed 9 years ago

chrispickard commented 9 years ago

I'm trying to use the vim linewise delete operations (cc and dd) and evil-smartparens isn't acting the way I would expect. Your example for dd says that

(let | ((foo 1.01))
  (frobnicate foo))

using dd on this code with the cursor at the | should leave us with

(
  (frobnicate foo))

but instead I'm left with

  (frobnicate foo))

I'm on emacs 24.5 from homebrew

chrispickard commented 9 years ago

turns out that sp-strict-mode was disabled. sorry to bother you, thanks for this great plugin!