diff --git a/boxes-config b/boxes-config index 7b63953..f5a5dc0 100644 --- a/boxes-config +++ b/boxes-config @@ -2953,4 +2953,5 @@ END vim-box # ============================================================================ -#EOF vim: set ai sw=4: + +#EOF vim: set ai sw=4 syn=boxes: diff --git a/boxes.vim b/boxes.vim index 1245bbd..78d72c5 100644 --- a/boxes.vim +++ b/boxes.vim @@ -1,17 +1,24 @@ +" boxes - command line ASCII boxes unlimited! +" Copyright (C) 1999-2020 Thomas Jensen and the boxes contributors +" +" This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public +" License, version 2, as published by the Free Software Foundation. +" This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied +" warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. +" You should have received a copy of the GNU General Public License along with this program; if not, write to the Free +" Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +" " Vim syntax file -" Language: "boxes" configuration file -" Maintainer: Thomas Jensen -" Latest Change: September 12, 1999 (Sunday, 01:14h) -" Vim Version: 5.4 -" Filenames: .boxes boxes-config boxes -" URL: https://github.com/ascii-boxes/boxes/blob/master/boxes.vim -" -" Problems: - Strings must start and end with double quotes (") and the -" escape character is always backslash (\), which does not -" allow correct colorization of strings following a DELIM. -" -" + Region ends are matched inside contained strings -" SOLVED! Thanks Dr. Charles E. Campbell! +" --------------- +" Latest version available from: +" https://github.com/ascii-boxes/boxes/blob/master/boxes.vim +" Status: This syntax file is still under development (you could say "beta") and has a few known issues (below). +" We think it's good enough to be used in the wild. +" Even though it is not officially part of a boxes release, and simply intended to be downloaded via the link +" above, we think it's great when it gets packaged and installed with boxes! +" Known Issues: +" https://github.com/ascii-boxes/boxes/issues?q=is%3Aissue+is%3Aopen+Vim+Syntax +" _____________________________________________________________________________________________________________________ " Removes any old syntax stuff hanging around @@ -21,7 +28,7 @@ syntax clear syntax case ignore " Set the keyword characters -set iskeyword=a-z,A-Z +setlocal iskeyword=a-z,A-Z " @@ -122,5 +129,4 @@ let b:current_syntax = "boxes" - "EOF vim: sw=4