vim - How to add/change ex-mode mapping in viper/vimpulse? -
really not fan of :e , :b opening in window, , remap functions calling.
viper ex commands defined in ex-token-alist.
to add new commands (of course other approaches consing , add-to-list possible):
(push '("name" (do-this)) ex-token-alist) prior entries have higher priority later, if want override, add them.
Comments
Post a Comment