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
SPC k
(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.
magit-discard
SPC j
The text was updated successfully, but these errors were encountered:
I ran into same issue. Removing '("j" . "H-j") and '("k" . "H-k") fixed it for me.
'("j" . "H-j")
'("k" . "H-k")
Sorry, something went wrong.
What do H-j and H-k mean?
H-j
H-k
They are no longer needed.
No branches or pull requests
SPC k
is supposed to callmagit-discard
on magit, but it is simply ignored. I thinkSPC j
is also ignored in magit.The text was updated successfully, but these errors were encountered: