Skip to content

Commit 71badf9

Browse files
committed
Update runtime files
1 parent 80406c2 commit 71badf9

Some content is hidden

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

63 files changed

+3695
-818
lines changed

.github/CODEOWNERS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,24 @@ runtime/colors/delek.vim @habamax @romainl @neutaaaaan
2929
runtime/colors/desert.vim @habamax @romainl @neutaaaaan
3030
runtime/colors/elflord.vim @habamax @romainl @neutaaaaan
3131
runtime/colors/evening.vim @habamax @romainl @neutaaaaan
32+
runtime/colors/habamax.vim @habamax @romainl @neutaaaaan
3233
runtime/colors/industry.vim @habamax @romainl @neutaaaaan
3334
runtime/colors/koehler.vim @habamax @romainl @neutaaaaan
35+
runtime/colors/lunaperche.vim @habamax @romainl @neutaaaaan
3436
runtime/colors/morning.vim @habamax @romainl @neutaaaaan
3537
runtime/colors/murphy.vim @habamax @romainl @neutaaaaan
3638
runtime/colors/pablo.vim @habamax @romainl @neutaaaaan
3739
runtime/colors/peachpuff.vim @habamax @romainl @neutaaaaan
40+
runtime/colors/quiet.vim @habamax @romainl @neutaaaaan
41+
runtime/colors/retrobox.vim @habamax @romainl @neutaaaaan
3842
runtime/colors/ron.vim @habamax @romainl @neutaaaaan
3943
runtime/colors/shine.vim @habamax @romainl @neutaaaaan
4044
runtime/colors/slate.vim @habamax @romainl @neutaaaaan
45+
runtime/colors/sorbet.vim @habamax @romainl @neutaaaaan
4146
runtime/colors/tools @habamax @romainl @neutaaaaan
4247
runtime/colors/torte.vim @habamax @romainl @neutaaaaan
48+
runtime/colors/wildcharm.vim @habamax @romainl @neutaaaaan
49+
runtime/colors/zaibatsu.vim @habamax @romainl @neutaaaaan
4350
runtime/colors/zellner.vim @habamax @romainl @neutaaaaan
4451
runtime/compiler/checkstyle.vim @dkearns
4552
runtime/compiler/cm3.vim @dkearns
@@ -215,6 +222,7 @@ runtime/ftplugin/wget2.vim @dkearns
215222
runtime/ftplugin/xml.vim @chrisbra
216223
runtime/ftplugin/xs.vim @petdance
217224
runtime/ftplugin/zsh.vim @chrisbra
225+
runtime/import/dist/vimhighlight.vim @lacygoill
218226
runtime/indent/basic.vim @dkearns
219227
runtime/indent/bst.vim @tpope
220228
runtime/indent/cdl.vim @dkearns
@@ -367,6 +375,7 @@ runtime/syntax/haml.vim @tpope
367375
runtime/syntax/hare.vim @rsaihe
368376
runtime/syntax/haskell.vim @coot
369377
runtime/syntax/hgcommit.vim @k-takata
378+
runtime/syntax/hitest.vim @lacygoill
370379
runtime/syntax/hollywood.vim @sodero
371380
runtime/syntax/html.vim @dkearns
372381
runtime/syntax/i3config.vim @hiqua

runtime/autoload/dist/ft.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ vim9script
33
# Vim functions for file type detection
44
#
55
# Maintainer: Bram Moolenaar <[email protected]>
6-
# Last Change: 2022 Dec 14
6+
# Last Change: 2023 Apr 22
77

88
# These functions are moved here from runtime/filetype.vim to make startup
99
# faster.

runtime/autoload/dist/script.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ vim9script
44
# Invoked from "scripts.vim" in 'runtimepath'
55
#
66
# Maintainer: Bram Moolenaar <[email protected]>
7-
# Last Change: 2022 Nov 24
7+
# Last Change: 2023 Apr 17
88

99
export def DetectFiletype()
1010
var line1 = getline(1)

runtime/autoload/netrw.vim

Lines changed: 195 additions & 76 deletions
Large diffs are not rendered by default.

runtime/autoload/netrwSettings.vim

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" netrwSettings.vim: makes netrw settings simpler
2-
" Date: Aug 12, 2021
2+
" Date: Nov 15, 2021
33
" Maintainer: Charles E Campbell <[email protected]>
4-
" Version: 17 ASTRO-ONLY
4+
" Version: 18
55
" Copyright: Copyright (C) 1999-2007 Charles E. Campbell {{{1
66
" Permission is hereby granted to use and distribute this code,
77
" with or without modifications, provided that this copyright
@@ -19,7 +19,7 @@
1919
if exists("g:loaded_netrwSettings") || &cp
2020
finish
2121
endif
22-
let g:loaded_netrwSettings = "v17"
22+
let g:loaded_netrwSettings = "v18a"
2323
if v:version < 700
2424
echohl WarningMsg
2525
echo "***warning*** this version of netrwSettings needs vim 7.0"
@@ -159,8 +159,6 @@ fun! netrwSettings#NetrwSettings()
159159
put = 'let g:netrw_localmkdiropt = '.g:netrw_localmkdiropt
160160
put = 'let g:netrw_localmovecmd = '.g:netrw_localmovecmd
161161
put = 'let g:netrw_localmovecmdopt = '.g:netrw_localmovecmdopt
162-
put = 'let g:netrw_localrmdir = '.g:netrw_localrmdir
163-
put = 'let g:netrw_localrmdiropt = '.g:netrw_localrmdiropt
164162
put = 'let g:netrw_maxfilenamelen = '.g:netrw_maxfilenamelen
165163
put = 'let g:netrw_menu = '.g:netrw_menu
166164
put = 'let g:netrw_mousemaps = '.g:netrw_mousemaps

runtime/autoload/zip.vim

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" zip.vim: Handles browsing zipfiles
22
" AUTOLOAD PORTION
3-
" Date: Nov 08, 2021
4-
" Version: 32
3+
" Date: Mar 12, 2023
4+
" Version: 33
55
" Maintainer: Charles E Campbell <[email protected]>
66
" License: Vim License (see vim's :help license)
77
" Copyright: Copyright (C) 2005-2019 Charles E. Campbell {{{1
@@ -20,7 +20,7 @@
2020
if &cp || exists("g:loaded_zip")
2121
finish
2222
endif
23-
let g:loaded_zip= "v32"
23+
let g:loaded_zip= "v33"
2424
if v:version < 702
2525
echohl WarningMsg
2626
echo "***warning*** this version of zip needs vim 7.2 or later"
@@ -160,10 +160,14 @@ endfun
160160
" ---------------------------------------------------------------------
161161
" ZipBrowseSelect: {{{2
162162
fun! s:ZipBrowseSelect()
163-
" call Dfunc("ZipBrowseSelect() zipfile<".b:zipfile."> curfile<".expand("%").">")
163+
" call Dfunc("ZipBrowseSelect() zipfile<".((exists("b:zipfile"))? b:zipfile : "n/a")."> curfile<".expand("%").">")
164164
let repkeep= &report
165165
set report=10
166166
let fname= getline(".")
167+
if !exists("b:zipfile")
168+
" call Dret("ZipBrowseSelect : b:zipfile doesn't exist!")
169+
return
170+
endif
167171

168172
" sanity check
169173
if fname =~ '^"'

0 commit comments

Comments
 (0)