mirror of
https://github.com/vim/vim.git
synced 2026-05-28 00:21:37 +02:00
runtime(netrw): fix misaligned comment after #18611
related" #18611 closes: #18644 Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
50ede52829
commit
58ab3438b7
+2
-1
@@ -11,6 +11,7 @@
|
||||
" 2025 Sep 18 by Vim Project 'equalalways' not always respected #18358
|
||||
" 2025 Oct 01 by Vim Project fix navigate to parent folder #18464
|
||||
" 2025 Oct 26 by Vim Project fix parsing of remote user names #18611
|
||||
" 2025 Oct 27 by Vim Project align comment after #18611
|
||||
" Copyright: Copyright (C) 2016 Charles E. Campbell {{{1
|
||||
" Permission is hereby granted to use and distribute this code,
|
||||
" with or without modifications, provided that this copyright
|
||||
@@ -9312,7 +9313,7 @@ endfunction
|
||||
" s:RemotePathAnalysis: {{{2
|
||||
function s:RemotePathAnalysis(dirname)
|
||||
|
||||
" method :// user @ machine :port /path
|
||||
" method :// user @ machine :port /path
|
||||
let dirpat = '^\(\w\{-}\)://\(\([^@]\+\)@\)\=\([^/:#]\+\)\%([:#]\(\d\+\)\)\=/\(.*\)$'
|
||||
let s:method = substitute(a:dirname,dirpat,'\1','')
|
||||
let s:user = substitute(a:dirname,dirpat,'\3','')
|
||||
|
||||
Reference in New Issue
Block a user