mirror of
https://github.com/neovim/neovim.git
synced 2026-03-01 06:38:26 +00:00
2f689d5abd
Skip colors/ and syntax/help_ru.vim: missing previous changes.
Co-authored-by: Christian Brabandt <cb@256bit.org>
15 lines
358 B
VimL
15 lines
358 B
VimL
" Vim syntax file
|
|
" Language: MS Windows URL shortcut file
|
|
" Maintainer: ObserverOfTime <chronobserver@disroot.org> (invalid)
|
|
" LastChange: 2023-06-04
|
|
|
|
" Quit when a syntax file was already loaded.
|
|
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
" Just use the dosini syntax for now
|
|
runtime! syntax/dosini.vim
|
|
|
|
let b:current_syntax = "urlshortcut"
|