evil-leader icon indicating copy to clipboard operation
evil-leader copied to clipboard

<leader> key for evil

Results 17 evil-leader issues
Sort by recently updated
recently updated
newest added

Using the below configuration file (and the latest version of evil-mode and evil-leader as a submodule in my `.emacs/modules` directory), I am able to reproduce a bug where ` b`...

Hey guys. In my `emacs.org`, I've got the following configuration: ``` (evil-leader/set-leader "") (setq evil-leader/in-all-states t) (evil-mode nil) (global-evil-leader-mode) (evil-mode 1) ``` I needed to use it like that as...

Say I there's a bunch of keybindings under the `C-c x` prefix already defined, e.g. `C-c x s`, `C-c x f` etc. Now I want to *also* have the same...

While `set-key-for-mode` is helpful for emacs modes, as far as I can tell there is no way to associate a key with an evil mode (normal-mode, visual-mode for example). In...

It would be nice if evil-leader would allow one key to simultaneously be bound to a different action for each evil state. For example, allow all of the following to...

I use this ``` (evil-leader/set-leader "") (evil-leader/set-key "/t" (kbd ":bd!")) ``` and when I type space and tab in emacs, it shows SPC TAB is undefined.

Not as clean as I initially thought, because there is no convention that minor modes should have hooks. So we have to resort to advices to set local keys. Usage...

This allows you to use `evil-leader/set-key-for-mode` to set minor-mode specific maps. I think this also addresses #27.

please make it more clear why `evil-leader` is useful (either in this issue, but preferably in the readme). for instance, this also seems to work fine to get some basic...