k-takata / minpac

A minimal package manager for Vim 8+ (and Neovim)
835 stars 30 forks source link

Remove single quotes from debug messages #120

Closed partcyborg closed 3 years ago

partcyborg commented 3 years ago

Occasionally, messages are printed by minpac using s:echox_verbose() that contain single quotes. When this happens, it causes the following vim error:

` Error detected while processing function 11_start_update[2]..

11_update_single_plugin[62]..11_start_job[6]..94_on_stderr[4].. 11_job_err_cb[9]..11_echom_verbose[1]..11_echox_verbose: line 8: E121: Undefined variable: master ` This happens because "master" is wrapped in single quotes. Removing the single quotes fixes this issue.
k-takata commented 3 years ago

thx