Mercurial > vim
annotate runtime/ftplugin/dune.vim @ 20303:98e7b880b7b1 v8.2.0707
patch 8.2.0707: Vim9 function test fails
Commit: https://github.com/vim/vim/commit/f391586f3f6a304d3bb0160ab75bdd9d758bd2da
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu May 7 14:37:19 2020 +0200
patch 8.2.0707: Vim9 function test fails
Problem: Vim9 function test fails.
Solution: Adjust expected error code.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 07 May 2020 14:45:04 +0200 |
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+=#,?,.,/ |