You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Define a key with one char in another prefix key is not allowed. But the expected behavior will be p binds to one and ps binds to another cmd. "p" 'projectile-switch-project "ps" 'smex
This situation could get worse if evil-leader/set-key-for-mode is used.
(evil-leader/set-key
"p" )
(evil-leader/set-key 'minor-mode
"ps" <another_cmd>)
Then the original "p" bindings will be overwritten without warning.
The text was updated successfully, but these errors were encountered:
Define a key with one char in another prefix key is not allowed. But the expected behavior will be p binds to one and ps binds to another cmd.
"p" 'projectile-switch-project "ps" 'smex
This situation could get worse if
evil-leader/set-key-for-mode
is used.(evil-leader/set-key
"p" )
(evil-leader/set-key 'minor-mode
"ps" <another_cmd>)
Then the original "p" bindings will be overwritten without warning.
The text was updated successfully, but these errors were encountered: