Indents in the editor
Is there a way to format the form below so that lines after the first
are offset by 2 spaces?
(deflexer mylexer
("'.*'" 'string)
("#.*$" 'comment)
("[ \t\r\f]+" 'ws)
(":=" 'assign)
("[\[]" 'lbrack)
("[\]]" 'rbrack)
("[\,]" 'comma)
("[\:]" 'colon)
("[\;]" 'semicolon)
("[+-]?[0-9]*[\.][0-9]+([eE][+-]?[0-9]+)?" 'float)
("[+-]?[0-9]+" 'integer)
("[a-zA-Z0-9_]+" 'id)
("." 'unknown))
Thanks, Joel
--
http://wagerlabs.com/