Skip to content

Commit

Permalink
Update 2 packages
Browse files Browse the repository at this point in the history
rsync (3.4.0-1 -> 3.4.1-1)
vim (9.1.0866-1 -> 9.1.1006-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Jan 17, 2025
1 parent 8565019 commit d26131f
Show file tree
Hide file tree
Showing 248 changed files with 16,459 additions and 11,515 deletions.
Binary file modified usr/bin/ex.exe
Binary file not shown.
Binary file modified usr/bin/rsync.exe
Binary file not shown.
Binary file modified usr/bin/rview.exe
Binary file not shown.
Binary file modified usr/bin/rvim.exe
Binary file not shown.
Binary file modified usr/bin/view.exe
Binary file not shown.
Binary file modified usr/bin/vim.exe
Binary file not shown.
Binary file modified usr/bin/vimdiff.exe
Binary file not shown.
3 changes: 2 additions & 1 deletion usr/bin/vimtutor
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ hu Hungarian \
it Italian \
ja Japanese \
ko Korean \
lt Lithuanian \
lv Latvian \
nb Bokmål \
nl Dutch \
Expand All @@ -61,7 +62,7 @@ sk Slovak \
sr Serbian \
sv Swedish \
tr Turkish \
uk English \
uk Ukrainian \
vi Vietnamese \
zh Chinese

Expand Down
Binary file modified usr/bin/xxd.exe
Binary file not shown.
Binary file modified usr/share/man/de.ISO8859-1/man1/rview.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.ISO8859-1/man1/rvim.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.ISO8859-1/man1/view.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.ISO8859-1/man1/vim.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.UTF-8/man1/rview.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.UTF-8/man1/rvim.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.UTF-8/man1/view.1.gz
Binary file not shown.
Binary file modified usr/share/man/de.UTF-8/man1/vim.1.gz
Binary file not shown.
Binary file modified usr/share/man/de/man1/rview.1.gz
Binary file not shown.
Binary file modified usr/share/man/de/man1/rvim.1.gz
Binary file not shown.
Binary file modified usr/share/man/de/man1/view.1.gz
Binary file not shown.
Binary file modified usr/share/man/de/man1/vim.1.gz
Binary file not shown.
Binary file modified usr/share/man/it.ISO8859-1/man1/vimtutor.1.gz
Binary file not shown.
Binary file modified usr/share/man/it.UTF-8/man1/vimtutor.1.gz
Binary file not shown.
Binary file modified usr/share/man/it/man1/vimtutor.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/rsync-ssl.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/rsync.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/vimtutor.1.gz
Binary file not shown.
Binary file modified usr/share/man/man5/rsyncd.conf.5.gz
Binary file not shown.
Binary file modified usr/share/man/ru.KOI8-R/man1/vimtutor.1.gz
Binary file not shown.
Binary file modified usr/share/man/ru.UTF-8/man1/vimtutor.1.gz
Binary file not shown.
25 changes: 23 additions & 2 deletions usr/share/vim/vim91/autoload/dist/ft.vim
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ vim9script
# Vim functions for file type detection
#
# Maintainer: The Vim Project <https://github.com/vim/vim>
# Last Change: 2024 May 23
# Last Change: 2025 Jan 11
# Former Maintainer: Bram Moolenaar <[email protected]>

# These functions are moved here from runtime/filetype.vim to make startup
Expand Down Expand Up @@ -32,6 +32,10 @@ enddef
# This function checks for the kind of assembly that is wanted by the user, or
# can be detected from the first five lines of the file.
export def FTasm()
# tiasm uses `* commment`
if join(getline(1, 10), "\n") =~ '\%(\%(^\|\n\)\*\|Texas Instruments Incorporated\)'
setf tiasm
endif
# make sure b:asmsyntax exists
if !exists("b:asmsyntax")
b:asmsyntax = ""
Expand Down Expand Up @@ -144,6 +148,14 @@ export def FTcfg()
endif
enddef

export def FTcl()
if join(getline(1, 4), '') =~ '/\*'
setf opencl
else
setf lisp
endif
enddef

export def FTcls()
if exists("g:filetype_cls")
exe "setf " .. g:filetype_cls
Expand Down Expand Up @@ -425,7 +437,7 @@ export def FThtml()

while n < 40 && n <= line("$")
# Check for Angular
if getline(n) =~ '@\(if\|for\|defer\|switch\)\|\*\(ngIf\|ngFor\|ngSwitch\|ngTemplateOutlet\)\|ng-template\|ng-content\|{{.*}}'
if getline(n) =~ '@\(if\|for\|defer\|switch\)\|\*\(ngIf\|ngFor\|ngSwitch\|ngTemplateOutlet\)\|ng-template\|ng-content'
setf htmlangular
return
endif
Expand Down Expand Up @@ -888,6 +900,7 @@ export def SetFileTypeSH(name: string, setft = true): string
if exists("b:is_sh")
unlet b:is_sh
endif
return SetFileTypeShell("bash", setft)
elseif name =~ '\<sh\>' || name =~ '\<dash\>'
# Ubuntu links "sh" to "dash", thus it is expected to work the same way
b:is_sh = 1
Expand Down Expand Up @@ -994,6 +1007,14 @@ export def SQL()
endif
enddef

export def FTsa()
if join(getline(1, 4), "\n") =~# '\%(^\|\n\);'
setf tiasm
return
endif
setf sather
enddef

# This function checks the first 25 lines of file extension "sc" to resolve
# detection between scala and SuperCollider.
# NOTE: We don't check for 'Class : Method', as this can easily be confused
Expand Down
21 changes: 20 additions & 1 deletion usr/share/vim/vim91/autoload/dist/vimindent.vim
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ vim9script

# Language: Vim script
# Maintainer: github user lacygoill
# Last Change: 2024 Nov 08
# Last Change: 2024 Dec 26
#
# Includes changes from The Vim Project:
# - 2024 Feb 09: Fix indent after literal Dict (A. Radev via #13966)
# - 2024 Nov 08: Fix indent after :silent! function (D. Kearns via #16009)
# - 2024 Dec 26: Fix indent for enums (Jim Zhou via #16293)

# NOTE: Whenever you change the code, make sure the tests are still passing:
#
Expand Down Expand Up @@ -172,6 +173,7 @@ const MODIFIERS: dict<string> = {
def: ['export', 'static'],
class: ['export', 'abstract', 'export abstract'],
interface: ['export'],
enum: ['export'],
}
# ...
# class: ['export', 'abstract', 'export abstract'],
Expand Down Expand Up @@ -634,6 +636,7 @@ def Offset( # {{{2
elseif !line_A.isfirst
&& (line_B->EndsWithLineContinuation()
|| line_A.text =~ LINE_CONTINUATION_AT_SOL)
&& !(line_B->EndsWithComma() && line_A.lnum->IsInside('EnumBlock'))
return shiftwidth()
endif

Expand Down Expand Up @@ -1051,6 +1054,22 @@ def ContinuesBelowBracketBlock( # {{{3
enddef

def IsInside(lnum: number, syntax: string): bool # {{{3
if syntax == 'EnumBlock'
var cur_pos = getpos('.')
cursor(lnum, 1)
var enum_pos = search('^\C\s*\%(export\s\)\=\s*enum\s\+\S\+', 'bnW')
var endenum_pos = search('^\C\s*endenum\>', 'bnW')
setpos('.', cur_pos)

if enum_pos == 0 && endenum_pos == 0
return false
endif
if (enum_pos > 0 && (endenum_pos == 0 || enum_pos > endenum_pos))
return true
endif
return false
endif

if !exists('b:vimindent')
|| !b:vimindent->has_key($'is_{syntax}')
return false
Expand Down
5 changes: 4 additions & 1 deletion usr/share/vim/vim91/autoload/gzip.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
" Vim autoload file for editing compressed files.
" Maintainer: The Vim Project <https://github.com/vim/vim>
" Last Change: 2023 Aug 10
" Last Change: 2024 Nov 25
" Former Maintainer: Bram Moolenaar <[email protected]>

" These functions are used by the gzip plugin.
Expand Down Expand Up @@ -148,6 +148,9 @@ fun gzip#read(cmd)
else
let fname = escape(expand("%:r"), " \t\n*?[{`$\\%#'\"|!<")
endif
if filereadable(undofile(expand("%")))
exe "sil rundo " . fnameescape(undofile(expand("%")))
endif
if &verbose >= 8
execute "doau BufReadPost " . fname
else
Expand Down
Loading

0 comments on commit d26131f

Please sign in to comment.