We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 052b86b commit f9f4e27Copy full SHA for f9f4e27
1 file changed
runtime/syntax/hyprlang.vim
@@ -1,11 +1,14 @@
1
" Vim syntax file
2
" Language: hyprlang
3
" Maintainer: Luca Saccarola <github.e41mv@aleeas.com>
4
-" Last Change: 2025 Jan 29
+" Last Change: 2025 Mar 26
5
6
if exists("b:current_syntax")
7
finish
8
endif
9
+let s:cpo= &cpo
10
+set cpo&vim
11
+
12
let b:current_syntax = "hyprlang"
13
14
syn case ignore
@@ -56,4 +59,6 @@ hi def link hyprString String
56
59
hi def link hyprColor Structure
57
60
hi def link hyprCommand Keyword
58
61
62
+let &cpo = s:cpo
63
+unlet s:cpo
64
" vim: ts=8 sts=2 sw=2 et
0 commit comments