annotate runtime/ftplugin/jproperties.vim @ 36569:2824209e628e
draft default tip
Added tag v9.1.0867 for changeset cc5630ef54698f10bd6eeddd36591ba22f784719
author |
Christian Brabandt <cb@256bit.org> |
date |
Fri, 15 Nov 2024 20:15:04 +0100 |
parents |
8dde7ced3344 |
children |
|
rev |
line source |
5510
|
1 " Vim filetype plugin
|
|
2 " Language: Java properties file
|
18790
|
3 " Maintainer: None
|
|
4 " Last Change: 2019 Dec 01
|
5510
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal formatoptions-=t
|
|
12 setlocal comments=:#,:!
|
|
13 setlocal commentstring=#\ %s
|
|
14
|
|
15 let b:undo_ftplugin = "setl cms< com< fo<"
|