96d53dddf3
The dein/vim-plug build hook runs `vim -e -s -c "source scripts/download_bin.vim"`, which starts in 'compatible' mode. There, leading-backslash line continuations aren't recognised, so the multi-line URL string raised `E10: \ should be followed by /, ? or &`. The install actually succeeded (binary downloaded), but in silent Ex mode any emitted error makes Vim exit non-zero — so dein reported a build failure. :NuwikiInstall worked because a normal session is 'nocompatible'. Wrap the script in the standard `let s:cpo_save = &cpo | set cpo&vim` … `let &cpo = s:cpo_save` guard so line continuations parse regardless of how it's invoked. Verified the exact dein command now exits 0. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>