2009-10-15から1日間の記事一覧

parser generator書いてみた(3)

度重なる仕様変更でこんな感じに書くようになった. Lexer = ParserGenerator::Lexer.new(/[ \t\n\r\v]+/) { token(:operator, /[+-]/) {|ma| ma[0].to_sym } token(:operator2, /[*\/]/) {|ma| ma[0].to_sym } token(:integer, /[0-9]+/) {|ma| ma[0].to_i …

anythingのキーバインド

以前,anythingのキーバインドを変更したけど書いてなかったので書く.増えた部分の近辺. (defvar anything-call-source-buffer "*anything source select*") (defvar anything-c-source-call-source `((name . "Call anything source") (candidate-number-…