|
perlでのコメントカラー表示の件、β10に盛り込んで頂きありがとうございます。
まだ不具合がありますので、報告します。
$in{'date'} = &get_date($time_now); #comment
だと、当たり前ですが、コメントのカラー表示も対応する括弧の強調表示もうまくい
きます。
$m'in{'date'} = &get_date($time_now); #comment
$in{'date'} = &m'get_date($time_now); #comment
#commentがカラー表示されません。
()で、対応する括弧の強調表示がされません。
$in{'date'} = &get_date($m'time_now); #comment
#commentがカラー表示されません。
(は、次の行以降の)に対応してしまいます。
$m'in{'date'} = &m'get_date($time_now); #comment
#commentがカラー表示されません。
()の対応はまともです。
$m'in{'date'} = &get_date($m'time_now); #comment
$in{'date'} = &m'get_date($m'time_now); #comment
#commentはカラー表示されます。
()で、対応する括弧の強調表示がされません。
$in{'date'} = &get_date($m'time_now); #comment
#commentがカラー表示されません。
(は、次の行以降の)に対応してしまいます。
よろしくお願いします。
|
|