Use silent mappings where possible.
authorIain Patterson <me@iain.cx>
Wed, 26 Feb 2014 10:54:30 +0000 (10:54 +0000)
committerIain Patterson <me@iain.cx>
Wed, 26 Feb 2014 10:57:33 +0000 (10:57 +0000)
commit818d30c4f33a7609b216b4ca4b34bf82a788d5d2
tree8d075013d465266a7b2c71782cf5addb64960160
parent74d08aad488b6e7f74f5252cd5f313958bcdc08a
Use silent mappings where possible.

The Mapping() function was being called with ":<CR>" appended to every
mapping so that executing the mapping would not leave the expanded
command in the ruler.

On Vim 6 and later the correct way to execute the mapping discreetly is
to use <silent> and even on Vim 5 it is more appropriate to append the
":<CR>" within the Mapping() function.
.vimrc