But note that, even in current vim, this does not work properly when
using a multibyte encoding [1].
[1] http://groups.google.com/group/vim_dev/browse_thread/thread/6c9435f656c2550c/9c7ae1b74a457306
~Matt
If map <esc>a works instead of <m-a> I can provide a simple command
which does this substitution automatically..
So instead of
noremap you use
Noremap and that's it..
Marc Weber
Creating mappings beginning with escape is much, much less nice. The
biggest reason is that will use 'timeoutlen' instead of 'ttimeoutlen',
meaning that typing <Esc>a will often be recognized as a <M-a>
instead, unless you tweak 'timeoutlen' to be ridiculously low and deal
with all the problems caused by that.
~Matt