From 0fbcebaca1aba95080d74151f7e0a94ffb855b06 Mon Sep 17 00:00:00 2001 From: Liam Beguin Date: Wed, 5 May 2021 23:06:01 -0400 Subject: syntax-highlighting: vim: fix setting cpo Since 'cpo' is global, use `set` instead of `setlocal`. See: b66f0372cc11 Signed-off-by: Liam Beguin --- data/syntax-highlighting/vim/indent/meson.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data') diff --git a/data/syntax-highlighting/vim/indent/meson.vim b/data/syntax-highlighting/vim/indent/meson.vim index f73e3b92d..6e389d111 100644 --- a/data/syntax-highlighting/vim/indent/meson.vim +++ b/data/syntax-highlighting/vim/indent/meson.vim @@ -24,7 +24,7 @@ if exists("*GetMesonIndent") finish endif let s:keepcpo= &cpo -setlocal cpo&vim +set cpo&vim " Come here when loading the script the first time. -- cgit v1.2.3