--[[ Mitchell's lexers/?.lua Copyright (c) 2006-2007 Mitchell Foral. All rights reserved. SciTE-tools homepage: http://caladbolg.net/scite.php Send email to: mitchellcaladbolgnet Permission to use, copy, modify, and distribute this file is granted, provided credit is given to Mitchell. ? LPeg lexer ]]-- module(..., package.seeall) local P, R, S = lpeg.P, lpeg.R, lpeg.S Token = any_char Tokens = lpeg.Ct(Token^0) function LoadStyles() -- add_style('id', style_table) end