Mercurial > vim
comparison runtime/ftplugin/8th.vim @ 15878:314694a2e74a
Update runtime files.
commit https://github.com/vim/vim/commit/4c92e75dd4ddb68dd92a86dd02d53c70dd4af33a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 17 21:18:32 2019 +0100
Update runtime files.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 17 Feb 2019 21:30:08 +0100 |
parents | |
children | 65de67669df3 |
comparison
equal
deleted
inserted
replaced
15877:904e9bd83419 | 15878:314694a2e74a |
---|---|
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 |