From 22040ce638ed610cfdbba03376ad9864a2a5d321 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 14 Jan 2021 20:59:40 +0100 Subject: Update --- syntax/ocaml.vim | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'syntax/ocaml.vim') diff --git a/syntax/ocaml.vim b/syntax/ocaml.vim index 032c133d..c3508ce8 100644 --- a/syntax/ocaml.vim +++ b/syntax/ocaml.vim @@ -27,6 +27,9 @@ if exists("b:current_syntax") && b:current_syntax == "ocaml" finish endif +let s:keepcpo = &cpo +set cpo&vim + " ' can be used in OCaml identifiers setlocal iskeyword+=' @@ -388,4 +391,7 @@ hi def link ocamlPpxEncl ocamlEncl let b:current_syntax = "ocaml" +let &cpo = s:keepcpo +unlet s:keepcpo + " vim: ts=8 -- cgit v1.2.3