diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2019-03-29 20:30:36 +0100 |
commit | a55b6aa3aa797c989a4979a13a5bd2ae11cfd4a5 (patch) | |
tree | 0ec7670cabfdf1b5fa3545cee9ee9d6ca7c8ad32 /syntax/dune.vim | |
parent | 1d45a6d4f094127b113470d7710695b280224933 (diff) | |
download | vim-polyglot-3.7.1.tar.gz vim-polyglot-3.7.1.zip |
Remove grapqhl, fixes #387v3.7.1
Diffstat (limited to '')
-rw-r--r-- | syntax/dune.vim (renamed from syntax/jbuild.vim) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/syntax/jbuild.vim b/syntax/dune.vim index 02df5e8b..4e2c2afe 100644 --- a/syntax/jbuild.vim +++ b/syntax/dune.vim @@ -31,10 +31,10 @@ syn keyword lispFunc ignore-stdout ignore-stderr ignore-outputs syn keyword lispFunc with-stdout-to with-stderr-to with-outputs-to syn keyword lispFunc write-file system bash -syn cluster lispBaseListCluster add=jbuildVar -syn match jbuildVar '\${[@<^]}' containedin=lispSymbol -syn match jbuildVar '\${\k\+\(:\k\+\)\?}' containedin=lispSymbol +syn cluster lispBaseListCluster add=duneVar +syn match duneVar '\${[@<^]}' containedin=lispSymbol +syn match duneVar '\${\k\+\(:\k\+\)\?}' containedin=lispSymbol -hi def link jbuildVar Identifier +hi def link duneVar Identifier -let b:current_syntax = "jbuild" +let b:current_syntax = "dune" |