We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have 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
If point is on a defface form, then counsel-describe-face errors with:
counsel-describe-face
Debugger entered--Lisp error: (wrong-type-argument stringp hexl-ascii-region) regexp-quote(hexl-ascii-region) (let ((re (regexp-quote preselect))) (cl-find-if (function (lambda (x) (string-match re x))) coll)) (or (and require-match (not (eq collection (quote internal-complete-buffer)))) dynamic-collection (let ((re (regexp-quote preselect))) (cl-find-if (function (lambda (x) (string-match re x))) coll)))
The error seems to be this call to regexp-quote in ivy--reset-state:
regexp-quote
ivy--reset-state
(when preselect (unless (or (and require-match (not (eq collection 'internal-complete-buffer))) dynamic-collection (let ((re (regexp-quote preselect))) (cl-find-if (lambda (x) (string-match re x)) coll))) (setq coll (cons preselect coll))))
I'm not sure how a symbol ended up in the ivy state struct in the first place. I think the code is expecting strings.
I'm on Emacs 25.1.
The text was updated successfully, but these errors were encountered:
955585e
Thanks.
Sorry, something went wrong.
No branches or pull requests
If point is on a defface form, then
counsel-describe-face
errors with:The error seems to be this call to
regexp-quote
inivy--reset-state
:I'm not sure how a symbol ended up in the ivy state struct in the first place. I think the code is expecting strings.
I'm on Emacs 25.1.
The text was updated successfully, but these errors were encountered: