diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-07-26 10:20:08 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-07-26 10:20:08 +0200 |
commit | 56121b4e27cb48efb17be55a969b2f0d725266f8 (patch) | |
tree | 30df0f431705cdb72b2014177ce3f0655287a81c /syntax/toml.vim | |
parent | 9c3c0bc082e0d58d15dc6f24d8a335931417e2f0 (diff) | |
download | vim-polyglot-56121b4e27cb48efb17be55a969b2f0d725266f8.tar.gz vim-polyglot-56121b4e27cb48efb17be55a969b2f0d725266f8.zip |
Update
Diffstat (limited to 'syntax/toml.vim')
-rw-r--r-- | syntax/toml.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syntax/toml.vim b/syntax/toml.vim index 76ba8bb5..4838b0d9 100644 --- a/syntax/toml.vim +++ b/syntax/toml.vim @@ -5,7 +5,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'toml') == -1 " URL: https://github.com/cespare/vim-toml " LICENSE: MIT -if exists("b:current_syntax") +if exists('b:current_syntax') finish endif @@ -75,6 +75,6 @@ hi def link tomlComment Comment syn sync minlines=500 -let b:current_syntax = "toml" +let b:current_syntax = 'toml' endif |