annotate runtime/ftplugin/sexplib.vim @ 26879:da89514c3b72
v8.2.3968
patch 8.2.3968: build failure
Commit: https://github.com/vim/vim/commit/e70cec976026ce72d09b6589ebba4677581063ac
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 1 14:25:55 2022 +0000
patch 8.2.3968: build failure
Problem: Build failure.
Solution: Add missing changes.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sat, 01 Jan 2022 15:30:06 +0100 |
parents |
15fa3923cc49 |
children |
02939ae3aaca |
rev |
line source |
23466
|
1 " Vim filetype plugin file
|
|
2 " Language: Sexplib
|
|
3 " Maintainer: Markus Mottl <markus.mottl@gmail.com>
|
|
4 " URL: https://github.com/ocaml/vim-ocaml
|
|
5 " Last Change:
|
|
6 " 2017 Apr 12 - First version (MM)
|
|
7
|
|
8 if exists("b:did_ftplugin")
|
|
9 finish
|
|
10 endif
|
|
11 let b:did_ftplugin=1
|
|
12
|
|
13 " Comment string
|
|
14 setl commentstring=;\ %s
|
|
15 setl comments=:;
|