ZyX introduced it. You may want to create a github ticket and reference
that in this thread copy pasting this solution

As quick workaround just set the plugin_dir_by_name setting, call
vam#DefaultPluginDirFromName and replace % by _.

  fun! vam#DefaultPluginDirFromName(name)
    " this function maps addon names to their storage location. \/: are replaced
    " by - (See name rewriting)
    return s:c.plugin_root_dir.'/'.substitute(a:name, '[\\/:]\+', '-', 'g')
  endfun
  fun! vam#PluginDirFromName(...)
    return call(s:c.plugin_dir_by_name, a:000, {})
  endf

If its causing trouble we should consider changing the default.
But I want to give ZyX a chance to give a response.

Marc Weber

-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to