annotate runtime/ftplugin/desktop.vim @ 30792:835032dad46a
Added tag v9.0.0730 for changeset 574bf5c78a40f46fb5bc96d6857e671c797bf6d4
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 12 Oct 2022 13:00:06 +0200 |
parents |
34c1f4cd0c18 |
children |
7c7432a53a6c |
rev |
line source |
29533
|
1 " Vim filetype plugin file
|
|
2 " Language: XDG desktop entry
|
|
3 " Maintainer: Eisuke Kawashima ( e.kawaschima+vim AT gmail.com )
|
|
4 " Last Change: 2022-07-26
|
|
5
|
|
6 if exists('b:did_ftplugin')
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = v:true
|
|
10
|
|
11 setl comments=:#
|
|
12 setl commentstring=#%s
|
|
13 let b:undo_ftplugin = 'setl com< cms<'
|