document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ;; define major mode for snobol
  2. ;; adopted from http://emacs-fu.blogspot.com/2010/04/creating-custom-modes-easy-way-with.html
  3. (require \'generic-x) ;; required
  4.  
  5. (define-generic-mode \'snobol-mode                
  6.   (list "*")                                       ;; comments
  7.   (list "output" "input")                          ;; keywords
  8.   \'(("^\\\\w\\\\{1,8\\\\}"  . font-lock-warning-face)    ;; highlights labels
  9.     (":.?[(].*[)]" . font-lock-constant-face))     ;; highlights gotos
  10.   \'("\\\\.sno$")                                     ;; file endings
  11.    nil                                             ;; other function calls
  12.   "A mode for Snobol4 files"                       ;; doc string
  13. )
');