syntax-highlighting: vim: fix setting cpo

Since 'cpo' is global, use `set` instead of `setlocal`.

See: b66f0372cc11

Signed-off-by: Liam Beguin <liambeguin@gmail.com>
pull/8736/head
Liam Beguin 4 years ago committed by Jussi Pakkanen
parent 802f66f442
commit 0fbcebaca1
  1. 2
      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.

Loading…
Cancel
Save