-
Notifications
You must be signed in to change notification settings - Fork 19
Questions About Using With Evil Macros #24
New issue
8000Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hey there. At first sight I don't see anything wrong with that debug spec. But I haven't had my morning coffee yet, so I might be missing something silly. As for the autoloads, I can't say I understand you. :) (But maybe I'm just half-asleep still). Inside a define-namespace, the |
As an example, if the namespace is
This will not be touched and will end up defined just as
If you need to see more, this is the package I'm using Names with. As for the autoloads, can they be followed by a sexp corresponding to the full autoload that needs to be generated? I'm just checking to make sure that This is what I would have without Names:
This is what I would want to have with Names:
The sexp after |
- Allow creation of text objects with non-word-related motions - Get rid of cl-lib dependency - Add missing evil dependency - Improve documentation - Add autoload cookies - Move text object definitions out of names namespace at least for now (Malabarba/names#24) - Fix edge case where the forward-end motion jumps past the current line
First off, thank you for the great package.
I want to use this for my packages that create evil text objects, and I noticed that I still have to type the namespace prefix when using
evil-define-text-object
. I'm guessing this is because the macro's debug section does not have what Names is looking for:Is there another way to get names to correctly handle this or does the debug section in the macro have to be changed?
Also, when not using Names, magic autoload comments don't recognize
evil-define-text-object
, so the full autoload has to be specified (e.g.;;;###autoload (autoload 'name ...)
. Can this be done with:autoload
?The text was updated successfully, but these errors were encountered: