15878
|
1 " Vim ftplugin file
|
|
2 " Language: 8th
|
|
3 " Version: any
|
|
4 " Last Change: 2015/11/08
|
|
5 " Maintainer: Ron Aaron <ron@aaron-tech.com>
|
|
6 " URL: https://8th-dev.com/
|
|
7 " Filetypes: *.8th
|
|
8 " NOTE: 8th allows any non-whitespace in a name, so you need to do:
|
|
9 " setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255
|
|
10 " This goes with the syntax/8th.vim file.
|
|
11
|
|
12 " Only do this when not done yet for this buffer
|
|
13 if exists("b:did_8thplugin")
|
|
14 finish
|
|
15 endif
|
|
16
|
|
17 " Don't load another plugin for this buffer
|
|
18 let b:did_8thplugin = 1
|
|
19
|
|
20 setlocal ts=2 sts=2 sw=2 et
|
|
21 setlocal com=s1:/*,mb:*,ex:*/,:\|,:\\
|
|
22 setlocal fo=tcrqol
|
|
23 setlocal matchpairs+=\::;
|
|
24 setlocal iskeyword=!,@,33-35,%,$,38-64,A-Z,91-96,a-z,123-126,128-255
|
|
25 setlocal suffixesadd=.8th
|