How do I make ; work like : in vimpulse?

133 Views Asked by At

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!

1

There are 1 best solutions below

2
On

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)