Bram Moolenaar | 10e8ff9 | 2023-06-10 21:40:39 +0100 | [diff] [blame] | 1 | " Vim syntax file |
2 | " Language: MS Windows URL shortcut file | ||||
3 | " Maintainer: ObserverOfTime <chronobserver@disroot.org> | ||||
4 | " LastChange: 2023-06-04 | ||||
5 | |||||
6 | " Quit when a syntax file was already loaded. | ||||
7 | if exists("b:current_syntax") | ||||
8 | finish | ||||
9 | endif | ||||
10 | |||||
11 | " Just use the dosini syntax for now | ||||
12 | runtime! syntax/dosini.vim | ||||
13 | |||||
14 | let b:current_syntax = "urlshortcut" |