Skip to content

Commit 58ab343

Browse files
zeertzjqchrisbra
authored andcommitted
runtime(netrw): fix misaligned comment after #18611
related" #18611 closes: #18644 Signed-off-by: Christian Brabandt <[email protected]>
1 parent 50ede52 commit 58ab343

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • runtime/pack/dist/opt/netrw/autoload

runtime/pack/dist/opt/netrw/autoload/netrw.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
" 2025 Sep 18 by Vim Project 'equalalways' not always respected #18358
1212
" 2025 Oct 01 by Vim Project fix navigate to parent folder #18464
1313
" 2025 Oct 26 by Vim Project fix parsing of remote user names #18611
14+
" 2025 Oct 27 by Vim Project align comment after #18611
1415
" Copyright: Copyright (C) 2016 Charles E. Campbell {{{1
1516
" Permission is hereby granted to use and distribute this code,
1617
" with or without modifications, provided that this copyright
@@ -9312,7 +9313,7 @@ endfunction
93129313
" s:RemotePathAnalysis: {{{2
93139314
function s:RemotePathAnalysis(dirname)
93149315

9315-
" method :// user @ machine :port /path
9316+
" method :// user @ machine :port /path
93169317
let dirpat = '^\(\w\{-}\)://\(\([^@]\+\)@\)\=\([^/:#]\+\)\%([:#]\(\d\+\)\)\=/\(.*\)$'
93179318
let s:method = substitute(a:dirname,dirpat,'\1','')
93189319
let s:user = substitute(a:dirname,dirpat,'\3','')

0 commit comments

Comments
 (0)