Skip to content

Commit d26131f

Browse files
author
Git for Windows Build Agent
committed
Update 2 packages
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]>
1 parent 8565019 commit d26131f

File tree

248 files changed

+16459
-11515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

248 files changed

+16459
-11515
lines changed

usr/bin/ex.exe

5.5 KB
Binary file not shown.

usr/bin/rsync.exe

512 Bytes
Binary file not shown.

usr/bin/rview.exe

5.5 KB
Binary file not shown.

usr/bin/rvim.exe

5.5 KB
Binary file not shown.

usr/bin/view.exe

5.5 KB
Binary file not shown.

usr/bin/vim.exe

5.5 KB
Binary file not shown.

usr/bin/vimdiff.exe

5.5 KB
Binary file not shown.

usr/bin/vimtutor

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ hu Hungarian \
5050
it Italian \
5151
ja Japanese \
5252
ko Korean \
53+
lt Lithuanian \
5354
lv Latvian \
5455
nb Bokmål \
5556
nl Dutch \
@@ -61,7 +62,7 @@ sk Slovak \
6162
sr Serbian \
6263
sv Swedish \
6364
tr Turkish \
64-
uk English \
65+
uk Ukrainian \
6566
vi Vietnamese \
6667
zh Chinese
6768

usr/bin/xxd.exe

0 Bytes
Binary file not shown.
866 Bytes
Binary file not shown.
866 Bytes
Binary file not shown.
866 Bytes
Binary file not shown.
866 Bytes
Binary file not shown.
859 Bytes
Binary file not shown.

usr/share/man/de.UTF-8/man1/rvim.1.gz

859 Bytes
Binary file not shown.

usr/share/man/de.UTF-8/man1/view.1.gz

859 Bytes
Binary file not shown.

usr/share/man/de.UTF-8/man1/vim.1.gz

859 Bytes
Binary file not shown.

usr/share/man/de/man1/rview.1.gz

866 Bytes
Binary file not shown.

usr/share/man/de/man1/rvim.1.gz

866 Bytes
Binary file not shown.

usr/share/man/de/man1/view.1.gz

866 Bytes
Binary file not shown.

usr/share/man/de/man1/vim.1.gz

866 Bytes
Binary file not shown.
-3 Bytes
Binary file not shown.
-4 Bytes
Binary file not shown.

usr/share/man/it/man1/vimtutor.1.gz

-3 Bytes
Binary file not shown.

usr/share/man/man1/rsync-ssl.1.gz

-1 Bytes
Binary file not shown.

usr/share/man/man1/rsync.1.gz

-1 Bytes
Binary file not shown.

usr/share/man/man1/vimtutor.1.gz

0 Bytes
Binary file not shown.

usr/share/man/man5/rsyncd.conf.5.gz

0 Bytes
Binary file not shown.
330 Bytes
Binary file not shown.
354 Bytes
Binary file not shown.

usr/share/vim/vim91/autoload/dist/ft.vim

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vim9script
33
# Vim functions for file type detection
44
#
55
# Maintainer: The Vim Project <https://github.com/vim/vim>
6-
# Last Change: 2024 May 23
6+
# Last Change: 2025 Jan 11
77
# Former Maintainer: Bram Moolenaar <[email protected]>
88

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

151+
export def FTcl()
152+
if join(getline(1, 4), '') =~ '/\*'
153+
setf opencl
154+
else
155+
setf lisp
156+
endif
157+
enddef
158+
147159
export def FTcls()
148160
if exists("g:filetype_cls")
149161
exe "setf " .. g:filetype_cls
@@ -425,7 +437,7 @@ export def FThtml()
425437

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

1010+
export def FTsa()
1011+
if join(getline(1, 4), "\n") =~# '\%(^\|\n\);'
1012+
setf tiasm
1013+
return
1014+
endif
1015+
setf sather
1016+
enddef
1017+
9971018
# This function checks the first 25 lines of file extension "sc" to resolve
9981019
# detection between scala and SuperCollider.
9991020
# NOTE: We don't check for 'Class : Method', as this can easily be confused

usr/share/vim/vim91/autoload/dist/vimindent.vim

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ vim9script
22

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

1112
# NOTE: Whenever you change the code, make sure the tests are still passing:
1213
#
@@ -172,6 +173,7 @@ const MODIFIERS: dict<string> = {
172173
def: ['export', 'static'],
173174
class: ['export', 'abstract', 'export abstract'],
174175
interface: ['export'],
176+
enum: ['export'],
175177
}
176178
# ...
177179
# class: ['export', 'abstract', 'export abstract'],
@@ -634,6 +636,7 @@ def Offset( # {{{2
634636
elseif !line_A.isfirst
635637
&& (line_B->EndsWithLineContinuation()
636638
|| line_A.text =~ LINE_CONTINUATION_AT_SOL)
639+
&& !(line_B->EndsWithComma() && line_A.lnum->IsInside('EnumBlock'))
637640
return shiftwidth()
638641
endif
639642

@@ -1051,6 +1054,22 @@ def ContinuesBelowBracketBlock( # {{{3
10511054
enddef
10521055

10531056
def IsInside(lnum: number, syntax: string): bool # {{{3
1057+
if syntax == 'EnumBlock'
1058+
var cur_pos = getpos('.')
1059+
cursor(lnum, 1)
1060+
var enum_pos = search('^\C\s*\%(export\s\)\=\s*enum\s\+\S\+', 'bnW')
1061+
var endenum_pos = search('^\C\s*endenum\>', 'bnW')
1062+
setpos('.', cur_pos)
1063+
1064+
if enum_pos == 0 && endenum_pos == 0
1065+
return false
1066+
endif
1067+
if (enum_pos > 0 && (endenum_pos == 0 || enum_pos > endenum_pos))
1068+
return true
1069+
endif
1070+
return false
1071+
endif
1072+
10541073
if !exists('b:vimindent')
10551074
|| !b:vimindent->has_key($'is_{syntax}')
10561075
return false

usr/share/vim/vim91/autoload/gzip.vim

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
" Vim autoload file for editing compressed files.
22
" Maintainer: The Vim Project <https://github.com/vim/vim>
3-
" Last Change: 2023 Aug 10
3+
" Last Change: 2024 Nov 25
44
" Former Maintainer: Bram Moolenaar <[email protected]>
55

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

0 commit comments

Comments
 (0)