From: dkearns Date: Sun, 24 Mar 2024 16:47:37 +0000 (+1100) Subject: runtime(netrw): Fix typo in netrw#NetWrite (#14283) X-Git-Tag: v9.1.0203~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b715bdaf4ca08ba0f64475e250c0fe799ab6d9b;p=thirdparty%2Fvim.git runtime(netrw): Fix typo in netrw#NetWrite (#14283) Fix typo in netrw#NetWrite (http) error message call. Signed-off-by: Doug Kearns Signed-off-by: Christian Brabandt --- diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index 2206c21ada..b91dab4e71 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -2727,7 +2727,7 @@ fun! netrw#NetWrite(...) range let url= g:netrw_choice call s:NetrwExe(s:netrw_silentxfer."!".g:netrw_http_put_cmd." ".s:ShellEscape(tmpfile,1)." ".s:ShellEscape(url,1) ) elseif !exists("g:netrw_quiet") - call netrw#ErrorMsg(s:ERROR,"can't write to http using <".g:netrw_http_put_cmd.">".",16) + call netrw#ErrorMsg(s:ERROR,"can't write to http using <".g:netrw_http_put_cmd.">",16) endif ".........................................