diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-27 00:02:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-27 00:02:13 +0000 |
commit | f193fffd16563cfbe7c02a21e19c8bb11707581d (patch) | |
tree | 4bae3092421aa986103b8000b1012989a9ea49e6 /runtime/syntax/smcl.vim | |
parent | 551dbcc9b604c2992f908fb475e797fcc116315b (diff) | |
download | vim-f193fffd16563cfbe7c02a21e19c8bb11707581d.zip |
updated for version 7.0f02
Diffstat (limited to 'runtime/syntax/smcl.vim')
-rw-r--r-- | runtime/syntax/smcl.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/syntax/smcl.vim b/runtime/syntax/smcl.vim index e95cecbda..d9afba6de 100644 --- a/runtime/syntax/smcl.vim +++ b/runtime/syntax/smcl.vim @@ -1,14 +1,14 @@ -" stata_smcl.vim -- Vim syntax file for smcl files. +" smcl.vim -- Vim syntax file for smcl files. " Language: SMCL -- Stata Markup and Control Language " Maintainer: Jeff Pitblado <jpitblado@stata.com> -" Last Change: 14apr2006 -" Version: 1.1.1 -" Location: http://www.stata.com/users/jpitblado/files/vimfiles/syntax/stata_smcl.vim +" Last Change: 26apr2006 +" Version: 1.1.2 " Log: " 20mar2003 updated the match definition for cmdab " 14apr2006 'syntax clear' only under version control " check for 'b:current_syntax', removed 'did_smcl_syntax_inits' +" 26apr2006 changed 'stata_smcl' to 'smcl' if version < 600 syntax clear @@ -303,6 +303,6 @@ hi def link smclLink Underlined hi def link smclComment Comment hi def link smclString String -let b:current_syntax = "stata_smcl" +let b:current_syntax = "smcl" " vim: ts=8 |