comparison runtime/syntax/snnspat.vim @ 3312:b7811ab264bf v7.3.423

updated for version 7.3.423 Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
author Bram Moolenaar <bram@vim.org>
date Sat, 04 Feb 2012 21:59:01 +0100
parents 3fc0f57ecb91
children 43efa4f5a8ea
comparison
equal deleted inserted replaced
3311:54d1536a1c8b 3312:b7811ab264bf
1 " Vim syntax file 1 " Vim syntax file
2 " Language: SNNS pattern file 2 " Language: SNNS pattern file
3 " Maintainer: Davide Alberani <alberanid@bigfoot.com> 3 " Maintainer: Davide Alberani <alberanid@bigfoot.com>
4 " Last Change: 28 Apr 2001 4 " Last Change: 2012 Feb 03 by Thilo Six
5 " Version: 0.2 5 " Version: 0.2
6 " URL: http://digilander.iol.it/alberanid/vim/syntax/snnspat.vim 6 " URL: http://digilander.iol.it/alberanid/vim/syntax/snnspat.vim
7 " 7 "
8 " SNNS http://www-ra.informatik.uni-tuebingen.de/SNNS/ 8 " SNNS http://www-ra.informatik.uni-tuebingen.de/SNNS/
9 " is a simulator for neural networks. 9 " is a simulator for neural networks.
12 syntax clear 12 syntax clear
13 elseif exists("b:current_syntax") 13 elseif exists("b:current_syntax")
14 finish 14 finish
15 endif 15 endif
16 16
17 let s:cpo_save = &cpo
18 set cpo&vim
17 19
18 " anything that isn't part of the header, a comment or a number 20 " anything that isn't part of the header, a comment or a number
19 " is wrong 21 " is wrong
20 syn match snnspatError ".*" 22 syn match snnspatError ".*"
21 " hoping that matches any kind of notation... 23 " hoping that matches any kind of notation...
63 delcommand HiLink 65 delcommand HiLink
64 endif 66 endif
65 67
66 let b:current_syntax = "snnspat" 68 let b:current_syntax = "snnspat"
67 69
70 let &cpo = s:cpo_save
71 unlet s:cpo_save
68 " vim: ts=8 sw=2 72 " vim: ts=8 sw=2