On Fri, Jan 11, 2013 at 09:12:42AM +0100, Marco wrote:
macro index ,, \ '<enter-command>unset wait_key<enter> \ <shell-escape>vim ~/.mutt/muttrc ~/.mailfilter ~/.mutt/mailcap<enter> \ <enter-command>source ~/.mutt/muttrc<enter>' \ 'edit configuration files'
The problem is all the extra spaces you included in the macro string. Every character in the macro string is sent just as if you typed it on the keyboard. Try something like this instead:
macro index ,, \ '<enter-command>unset wait_key<enter><shell-escape>vim ~/.mutt/muttrc ~/.mailfilter ~/.mutt/mailcap<enter><enter-command>source ~/.mutt/muttrc<enter>' \ 'edit configuration files'