Rename interpretor to interpreter.
[Faustine.git] / interpreter / preprocessor / faust-0.9.47mr3 / syntax-highlighting / faust.vim
diff --git a/interpreter/preprocessor/faust-0.9.47mr3/syntax-highlighting/faust.vim b/interpreter/preprocessor/faust-0.9.47mr3/syntax-highlighting/faust.vim
new file mode 100644 (file)
index 0000000..60608de
--- /dev/null
@@ -0,0 +1,80 @@
+" There has to be a file called filetype.vim in your ~/.vim directory
+" with the following content:
+" faust filetype file
+"      if exists("did_load_filetypes")
+"        finish
+"      endif
+"      augroup filetypedetect
+"        au! BufRead,BufNewFile *.fst          setfiletype faust
+"        au! BufRead,BufNewFile *.dsp          setfiletype faust
+"      augroup END
+"
+" 
+" Faust syntax file
+" Language:    faust
+" Maintainer:  bjoern lindig <kebjoern@yahoo.de>
+" Version:     0.1
+" Last change: 2009-05-12
+
+" remove any old syntax stuff hanging around
+syn clear
+
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" faust primitives
+" the list is taken from the faust.xml file writen for the kate-editor and may
+" not be complete
+syn keyword fstPrims mem prefix int float rdtable rwtable select2 select3 ffunction fconstant fvariable button checkbox vslider hslider nentry vgroup hgroup tgroup vbargraph hbargraph attach acos asin atan atan2 cos sin tan exp log log10 pow sqrt abs min max fmod remainder floor ceil rint
+
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" faust operators
+syn keyword fstOps process with case seq par sum prod import component library environment declare
+
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" faust comments
+syn match      fstComment      "//.*$"
+syn region     fstComment      start="/\*" end="\*/" contains=fstOperator keepend extend
+
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" faust operators 
+syn match fstOperator  "_" 
+syn match fstOperator  "!" 
+syn match fstOperator  "+" 
+syn match fstOperator  "-" 
+syn match fstOperator  "*" 
+syn match fstOperator  " / " 
+syn match fstOperator  "%" 
+syn match fstOperator  "<" 
+syn match fstOperator  ">" 
+syn match fstOperator  ">=" 
+syn match fstOperator  "<=" 
+syn match fstOperator  "!=" 
+syn match fstOperator  "==" 
+syn match fstOperator  "&" 
+syn match fstOperator  "\^" 
+syn match fstOperator  "|" 
+syn match fstOperator  "<<" 
+syn match fstOperator  ">>" 
+syn match fstOperator  ":" 
+syn match fstOperator  "," 
+syn match fstOperator  "<:" 
+syn match fstOperator  ":>" 
+syn match fstOperator  "\~" 
+
+"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" faust brackets
+syn match fstAoperator "(" 
+syn match fstAoperator ")" 
+
+" String
+syn region fstString   start=+"+ skip=+\\\\\|\\"+ end=+"+
+
+" Color definition
+hi link fstAoperator   Statement
+hi link fstPrims       Label
+hi link fstOps         Identifier
+hi link fstOperator    Special
+hi link fstComment     Comment
+hi link fstString      String
+
+" The name of the syntax is faust
+let b:current_syntax = "faust"