Skip to content
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

SPC k is ignored in magit. #722

Open
amano-kenji opened this issue Feb 13, 2025 · 3 comments
Open

SPC k is ignored in magit. #722

amano-kenji opened this issue Feb 13, 2025 · 3 comments

Comments

@amano-kenji
Copy link

(defun meow-setup ()
  (setq meow-cheatsheet-layout meow-cheatsheet-layout-qwerty)
  (meow-motion-overwrite-define-key
   '("j" . meow-next)
   '("k" . meow-prev)
   '("<escape>" . ignore))
  (meow-leader-define-key
   ;; SPC j/k will run the original command in MOTION state.
   '("j" . "H-j")
   '("k" . "H-k")
   ;; Use SPC (0-9) for digit arguments.

SPC k is supposed to call magit-discard on magit, but it is simply ignored. I think SPC j is also ignored in magit.

@accelbread
Copy link
Contributor

I ran into same issue. Removing '("j" . "H-j") and '("k" . "H-k") fixed it for me.

@amano-kenji
Copy link
Author

What do H-j and H-k mean?

@DogLooksGood
Copy link
Collaborator

They are no longer needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants