annotate runtime/ftplugin/chatito.vim @ 34687:a05d2e1b7654
Added tag v9.1.0224 for changeset 83875247fbc0fe52f6cf5abd85010fa31f097fc5
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 28 Mar 2024 12:15:04 +0100 |
parents |
1e91e26ceebf |
children |
|
rev |
line source |
30547
|
1 " Vim filetype plugin
|
|
2 " Language: Chatito
|
|
3 " Maintainer: ObserverOfTime <chronobserver@disroot.org>
|
|
4 " Last Change: 2022 Sep 19
|
|
5
|
|
6 if exists('b:did_ftplugin')
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal comments=:#,:// commentstring=#\ %s
|
|
12 " indent of 4 spaces is mandated by the spec
|
|
13 setlocal expandtab softtabstop=4 shiftwidth=4
|
|
14
|
|
15 let b:undo_ftplugin = 'setl com< cms< et< sts< sw<'
|