I can't figure out how to rebind the :b and :e commands in evil-mode for Emacs.  Google isn't much of a help either.
I have tried (define-key evil-normal-state-map ":b" 'helm-buffers-list) but that screws up the : key for entering commands.
Currently I'm using (define-key evil-normal-state-map ",b" 'helm-buffers-list) and (define-key evil-normal-state-map ",e" 'find-file) but I'd prefer to have them on :b and :e so the motions would be the same when using real Vim.
Please don't mention remapping to ,b and ,e in Vim. :-)