blob: ebe08ac1d806fe28b9178784ddc8f11db19fd248 [file] [log] [blame]
Bram Moolenaar10e8ff92023-06-10 21:40:39 +01001" Vim filetype plugin file
2" Language: MS Windows URL shortcut file
3" Maintainer: ObserverOfTime <chronobserver@disroot.org>
4" Latest Revision: 2023-06-04
5
6if exists("b:did_ftplugin")
7 finish
8endif
9let b:did_ftplugin = 1
10
11let s:cpo_save = &cpoptions
12set cpoptions&vim
13
14let b:undo_ftplugin = "setl com< cms< fo<"
15
16setlocal comments=:; commentstring=;\ %s
17setlocal formatoptions-=t formatoptions+=croql
18
19let &cpoptions = s:cpo_save
20unlet s:cpo_save