Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make ; work like : in vimpulse?

I'd like to press ; to drop into ex mode, instead of : Does anyone know how I can configure vimpulse to make this happen? Thanks!

like image 815
Frew Schmidt Avatar asked Oct 24 '22 07:10

Frew Schmidt


1 Answers

You can do this by adding a keymap :

(define-key viper-vi-global-user-map (kbd ";") 'viper-ex)

As well, if you also use vimpulse:

(define-key vimpulse-visual-global-user-map (kbd ";") 'vimpulse-visual-ex)
like image 70
winterTTr Avatar answered Oct 31 '22 18:10

winterTTr