hlissner / evil-multiedit

Multiple cursors for evil-mode, based on iedit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Symbol’s function definition is void: evil-multiedit-default-keybinds

kylesnowschwartz opened this issue · comments

Hello, I'm encountering an error when trying to apply the default keybindings as suggested in the readme. I've added this to my .spacemacs files:

   dotspacemacs-additional-packages '(
                                      evil-multiedit
                                      )
(defun dotspacemacs/user-config ()
...
  (evil-multiedit-default-keybinds)
...
)

When I restart Spacemacs, the error I receive is

(Spacemacs) Error in dotspacemacs/user-config: Symbol’s function definition is void: evil-multiedit-default-keybinds

It looks as though the function evil-multiedit-default-keybinds is not being loaded into my environment, as when I manually eval the function in evil-multiedit.el I can then call it and it's no longer void. When I eval the entire buffer, I can call evil-multiedit-default-keybinds successfully and see its output.

My emacs version is GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin15.6.0, NS appkit-1404.47 Version 10.11.6 (Build 15G1611)) of 2017-10-20

spacemacs version is Release 0.200.9.x

installed version of evil multiedit is 20170623.1135

Thanks for your help!

see if this helps
#13

Sorry for the late reply, this slipped under my radar. I'm unfamiliar with Spacemacs, so I can't offer much help with it. Please try the following:

(require 'evil-multiedit)
(evil-multiedit-default-keybinds)

If that doesn't throw an error, the issue is with your spacemacs config and, sorry to say, I can't help you.

I'm closing this due to inactivity. Feel free to reopen this if this is still a problem, though I can't offer much help with spacemacs.