Tagged Questions
4
votes
2answers
125 views
vim customized with emacs commands (insert mode only)
I was an emacs user, and I have to switch to vim. But I miss some basic emacs commands in vim insert mode:
C-A
C-E
C-K
C-Y
C-x C-s
... and some other
I know that I can press Escape and then press ...
1
vote
1answer
302 views
How to bind “Ctrl-Alt-b” to the prefix of tmux?
Tmux uses Ctrlb as its prefix, but Ctrlb conflict with Emacs.
I want to bind CtrlAltb to tmux's prefix. I guess it may be C-M-b but didn't work...
2
votes
1answer
306 views
Defining key sequences in Evil-mode Emacs
I couldn't find any instructions on defining key sequences in the Evil doc.
The example given by the developers only covers a single key.
(define-key evil-normal-state "w" 'foo)
What do I need to ...