From 7e324fdcc8b5aa69839d9eaac1d502747efafab6 Mon Sep 17 00:00:00 2001 From: yemai Date: Wed, 3 Jul 2019 12:29:04 +0800 Subject: [PATCH] fix: add '-' to local iskeyword for vim prior to patch-7.4-1142 --- syntax/vue.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/syntax/vue.vim b/syntax/vue.vim index c3001eb..7a6f1ec 100644 --- a/syntax/vue.vim +++ b/syntax/vue.vim @@ -108,6 +108,8 @@ if has("patch-7.4-1142") else syntax iskeyword @,48-57,_,192-255,$,- endif +else + setlocal iskeyword+=- endif