Mercurial > vim
annotate runtime/ftplugin/dune.vim @ 18554:60c46cd053db v8.1.2271
patch 8.1.2271: build error if FEAT_TAG_BINS is not defined
Commit: https://github.com/vim/vim/commit/398a59b6a51e86c23a5f61cb9a6d8a5771c95680
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Nov 8 21:56:57 2019 +0100
patch 8.1.2271: build error if FEAT_TAG_BINS is not defined
Problem: Build error if FEAT_TAG_BINS is not defined. (John Marriott)
Solution: Add #ifdef.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 08 Nov 2019 22:00:05 +0100 |
parents | 432714f5c0f7 |
children | 15fa3923cc49 |
rev | line source |
---|---|
17261 | 1 " Language: Dune buildsystem |
2 " Maintainer: Markus Mottl <markus.mottl@gmail.com> | |
3 " Anton Kochkov <anton.kochkov@gmail.com> | |
4 " URL: https://github.com/rgrinberg/vim-ocaml | |
5 " Last Change: | |
6 " 2018 Nov 3 - Added commentstring (Markus Mottl) | |
7 " 2017 Sep 6 - Initial version (Etienne Millon) | |
8 | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 let b:did_ftplugin=1 | |
13 | |
14 set lisp | |
15 | |
16 " Comment string | |
17 setl commentstring=;\ %s | |
18 setl comments=:; | |
19 | |
20 setl iskeyword+=#,?,.,/ |