Notepad ++样式配置程序无法识别Ruby阻止的注释代码

时间:2013-06-13 21:48:39

标签: notepad++

我想修改Ruby中的一种样式来格式化被阻止的注释代码,这些注释代码是用' = begin'和' =结束'关键字。我喜欢Black Board主题,除了注释块以黑色文本显示,这很难阅读。 Notepad ++似乎无法识别Ruby的阻止注释。我希望阻止的评论在样式模板的commentLine中以相同的方式显示。

 =begin

 This is a blocked comment.

 =end

与Style Configurator中的其他语言(例如php)不同,Ruby没有COMMENT选项。在,有一个定义注释行的地方。

 <Language name="php" ext="php php3 phtml" commentLine="//" commentStart="/*" commentEnd="*/">
 <Language name="ruby" ext="rb rbw" commentLine="#">

我试图将commentStart和commentEnd字段添加到Ruby,但它没有改变任何东西。      

我还尝试在样式文件中添加COMMENT样式,但它仍然没有格式化被阻止的注释。

 <LexerType name="ruby" desc="Ruby" ext="">
   <WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> 
   <WordsStyle name="ERROR" styleID="1" fgColor="000000" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> 
   <WordsStyle name="COMMENTLINE" styleID="2" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" /> 
   *<WordsStyle name="COMMENT" styleID="2" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />* 

              

知道我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

对于内置的Ruby语言,我可以使用Ruby语言的内置样式配置器来更改给定的颜色。颜色由POD类别控制。请看下面的图片 - 希望它能提出这个想法:

enter image description here