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
Key sequences such as "\C-c\C-ia" are reported as an error. This can be tested as follows:
(package-lint-test--run "(define-key map \"\C-c\C-ia\" #'something)")
This seems to happen because read-kbd-macro (and its callees kbd and key-parse) used in package-lint--extract-key-sequence skips "\C-i".
read-kbd-macro
kbd
key-parse
package-lint--extract-key-sequence
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Key sequences such as "\C-c\C-ia" are reported as an error. This can be tested as follows:
(package-lint-test--run "(define-key map \"\C-c\C-ia\" #'something)")
This seems to happen because
read-kbd-macro
(and its calleeskbd
andkey-parse
) used inpackage-lint--extract-key-sequence
skips "\C-i".The text was updated successfully, but these errors were encountered: