What would be the easiest way to have the same kind of behavior that is in vim for the word back and forth navigation? In vim when you press \"w\" it moves a cu
w
You can actually use 'viper-forward-word
'viper-forward-word
(require 'viper) (global-set-key (kbd "M-f") 'viper-forward-word) (global-set-key (kbd "M-b") 'viper-backward-word)