aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2024-03-24 18:04:03 +0100
committerChristian Clason <c.clason@uni-graz.at>2024-03-24 23:00:43 +0100
commit665d5d39691dda3592b4044c55f22c68b07d10c3 (patch)
treeed4abf8d2cb0ca805c69bc4697848817b1f1a4e2
parent036f86feaccb25d8552c4bf4d216f7f2a9205325 (diff)
downloadrneovim-665d5d39691dda3592b4044c55f22c68b07d10c3.tar.gz
rneovim-665d5d39691dda3592b4044c55f22c68b07d10c3.tar.bz2
rneovim-665d5d39691dda3592b4044c55f22c68b07d10c3.zip
vim-patch:4b715bdaf4ca
runtime(netrw): Fix typo in netrw#NetWrite (vim/vim#14283) Fix typo in netrw#NetWrite (http) error message call. https://github.com/vim/vim/commit/4b715bdaf4ca08ba0f64475e250c0fe799ab6d9b Co-authored-by: dkearns <dougkearns@gmail.com>
-rw-r--r--runtime/autoload/netrw.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim
index fa08bb3848..22bfb070ae 100644
--- a/runtime/autoload/netrw.vim
+++ b/runtime/autoload/netrw.vim
@@ -2680,7 +2680,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
".........................................