-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into tabsidebar
- Loading branch information
Showing
13 changed files
with
38 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
" Vim filetype plugin file | ||
" Language: modules.conf(5) configuration file | ||
" Maintainer: This runtime file is looking for a new maintainer. | ||
" Previous Maintainer: Nikolai Weibull <[email protected]> | ||
" Latest Revision: 2024-09-19 (simplify keywordprg #15696) | ||
" Latest Revision: 2024-09-20 (remove erroneous endif) | ||
|
||
if exists("b:did_ftplugin") | ||
finish | ||
|
@@ -23,7 +24,6 @@ if has('unix') && executable('less') && exists(':terminal') == 2 | |
setlocal keywordprg=:ModconfKeywordPrg | ||
let b:undo_ftplugin .= '| setlocal keywordprg< iskeyword< | sil! delc -buffer ModconfKeywordPrg' | ||
endif | ||
endif | ||
|
||
let &cpo = s:cpo_save | ||
unlet s:cpo_save |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
" Maintainer: Aliaksei Budavei <0x000c70 AT gmail DOT com> | ||
" Former Maintainer: Claudio Fleiner <[email protected]> | ||
" Repository: https://github.com/zzzyxwvut/java-vim.git | ||
" Last Change: 2024 Sep 18 | ||
" Last Change: 2024 Sep 19 | ||
|
||
" Please check :help java.vim for comments on some of the options available. | ||
|
||
|
@@ -92,6 +92,13 @@ syn keyword javaTypedef this super | |
syn keyword javaOperator new instanceof | ||
syn match javaOperator "\<var\>\%(\s*(\)\@!" | ||
|
||
if s:ff.IsRequestedPreviewFeature(476) | ||
" Module imports can be used in any source file. | ||
syn match javaExternal "\<import\s\+module\>" contains=javaModuleImport | ||
syn keyword javaModuleImport contained module | ||
hi def link javaModuleImport Statement | ||
endif | ||
|
||
" Since the yield statement, which could take a parenthesised operand, | ||
" and _qualified_ yield methods get along within the switch block | ||
" (JLS-17, §3.8), it seems futile to make a region definition for this | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
" Language: LyRiCs | ||
" Maintainer: ObserverOfTime <[email protected]> | ||
" Filenames: *.lrc | ||
" Last Change: 2022 Sep 18 | ||
" Last Change: 2024 Sep 20 | ||
|
||
if exists('b:current_syntax') | ||
finish | ||
|
@@ -23,7 +23,7 @@ syn match lrcTagName contained nextgroup=lrcTagValue | |
syn match lrcTagValue /:\zs.\+\ze\]/ contained | ||
|
||
" Lyrics | ||
syn match lrcLyricTime /^\s*\[\d\d:\d\d\.\d\d\]/ | ||
syn match lrcLyricTime /^\s*\(\[\d\d:\d\d\.\d\d\]\)\+/ | ||
\ contains=lrcNumber nextgroup=lrcLyricLine | ||
syn match lrcLyricLine /.*$/ contained contains=lrcWordTime,@Spell | ||
syn match lrcWordTime /<\d\d:\d\d\.\d\d>/ contained contains=lrcNumber,@NoSpell | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,5 @@ autocmd_add([{ | |
cmd: 'RestoreFilename()', | ||
once: true, | ||
}]) | ||
|
||
g:java_syntax_previews = [476] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters