Hi, I have the following line in my source:
exec 'autocmd BufReadCmd '. pattern .' call '. rcmd .'(1, expand("<afile>"), "", "%")' This fails if the filename contains % which is replaced withexpand('%'). I can't seem to escape the % at any point, can I? Wrapping the exand("<afile>") in a escape(<>, "%") doesn't help.
Regards, Thomas.