-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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 binding for Shift-K #7
Labels
Comments
jtkDvlp
added a commit
that referenced
this issue
May 31, 2019
Thank you for your issue. Now it works for me. Feel free to reopen the issue if it´s not working for you. |
The change should be applied to the M-K binding as well: M-S-K |
Yeah, I also expected that but control and meta bindings behave different. Do you have tried the M-K and M-k, for me it works? |
It wasn't working until I mapped it via M-S-k locally |
Mhh ok, I will research about this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The keybinding
("C-K" web-mode-edit-element-elements-kill-siblings)
doesn't work under emacs 26.1 (perhaps others but I haven't tested). The capital K isn't interpreted as a shift-k chord; emacs sees it as a plain k and thus maps ctrl-k toweb-mode-edit-element-elements-kill-siblings
. The fix is to specify the chord explicitly:("C-S-k" web-mode-edit-element-elements-kill-siblings)
The text was updated successfully, but these errors were encountered: