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

Is it possible to use <leader><tab>?

Open zhmiao opened this issue 8 years ago • 1 comments

I use this

 (evil-leader/set-leader "<SPC>") 
 (evil-leader/set-key "/t" (kbd ":bd!"))

and when I type space and tab in emacs, it shows SPC TAB is undefined.

zhmiao avatar Feb 15 '16 04:02 zhmiao

As a work around, you can do something like this:

(define-key evil-normal-state-map (kbd "SPC TAB") 'evil-delete-buffer)

I've only just started using this, so I don't know if it has edge-case issues, but my leader maps still work fine.

edit: I realize now that I'm replying months later, but maybe passersby can find this useful anyway :stuck_out_tongue:

auwsmit avatar May 01 '16 18:05 auwsmit