如何用notepad++支持Scala语法
2个回答
推荐于2016-06-01
展开全部
notepad++应该是目前比较流行的文本编辑器之一,但是最近在开发scala时发现notepad++没有直接支持scala的语法,而且也没有scala的插架可以下载。后来在网上找到了支持scala语法的办法,和大家分享一下。
1,在本地的“SCALA_HOME/misc/scala-tool-support/notepad-plus”路径下会有一个userDefineLang.xml配置 文件。
2,将userDefineLang.xml配置文件复制到“%APPDATA%\Notepad++”路径下(%APPDATA%是系统的环境变量,可以 在cmd窗口下用set命令找到)
3,重启notepad++。
之后就会发现notepad++会将scala程序里的关键字,字符串,注释等用不同的颜色表示出来,在一定程度上有助于对scala代码的理解。
1,在本地的“SCALA_HOME/misc/scala-tool-support/notepad-plus”路径下会有一个userDefineLang.xml配置 文件。
2,将userDefineLang.xml配置文件复制到“%APPDATA%\Notepad++”路径下(%APPDATA%是系统的环境变量,可以 在cmd窗口下用set命令找到)
3,重启notepad++。
之后就会发现notepad++会将scala程序里的关键字,字符串,注释等用不同的颜色表示出来,在一定程度上有助于对scala代码的理解。
展开全部
将下面内容保存为 userDefineLang.xml 放入Notepad++ 的目录,不起作用的话放到 C:\Users\XXX\AppData\Roaming\Notepad++ 目录里。语言--导入这个文件重启就可以了
<NotepadPlus>
<UserLang name="Scala" ext="scala">
<Settings>
<Global caseIgnored="no" />
<TreatAsSymbol comment="no" commentLine="yes" />
<Prefix words1="no" words2="no" words3="no" words4="no" />
</Settings>
<KeywordLists>
<Keywords name="Delimiters">"'0"'0</Keywords>
<Keywords name="Folder+">{</Keywords>
<Keywords name="Folder-">}</Keywords>
<Keywords name="Operators">- ! " # % & @ | ~ + < = ></Keywords>
<Keywords name="Comment">1/* 1/** 2*/ 2*/ 0//</Keywords>
<Keywords name="Words1">class def extends forSome import object package trait type val var with</Keywords>
<Keywords name="Words2">boolean byte char double float int long short false new null super this true</Keywords>
<Keywords name="Words3">case catch do else finally for if match requires return throw try while yield</Keywords>
<Keywords name="Words4">abstract final implicit lazy override private protected sealed</Keywords>
</KeywordLists>
<Styles>
<WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="FOLDEROPEN" styleID="12" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="FOLDERCLOSE" styleID="13" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD1" styleID="5" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD2" styleID="6" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD3" styleID="7" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD4" styleID="8" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="2" />
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="2" />
<WordsStyle name="NUMBER" styleID="4" fgColor="800000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER1" styleID="14" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER2" styleID="15" fgColor="800080" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER3" styleID="16" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" />
</Styles>
</UserLang>
</NotepadPlus>
<NotepadPlus>
<UserLang name="Scala" ext="scala">
<Settings>
<Global caseIgnored="no" />
<TreatAsSymbol comment="no" commentLine="yes" />
<Prefix words1="no" words2="no" words3="no" words4="no" />
</Settings>
<KeywordLists>
<Keywords name="Delimiters">"'0"'0</Keywords>
<Keywords name="Folder+">{</Keywords>
<Keywords name="Folder-">}</Keywords>
<Keywords name="Operators">- ! " # % & @ | ~ + < = ></Keywords>
<Keywords name="Comment">1/* 1/** 2*/ 2*/ 0//</Keywords>
<Keywords name="Words1">class def extends forSome import object package trait type val var with</Keywords>
<Keywords name="Words2">boolean byte char double float int long short false new null super this true</Keywords>
<Keywords name="Words3">case catch do else finally for if match requires return throw try while yield</Keywords>
<Keywords name="Words4">abstract final implicit lazy override private protected sealed</Keywords>
</KeywordLists>
<Styles>
<WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="FOLDEROPEN" styleID="12" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="FOLDERCLOSE" styleID="13" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD1" styleID="5" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD2" styleID="6" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD3" styleID="7" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="KEYWORD4" styleID="8" fgColor="004080" bgColor="FFFFFF" fontName="" fontStyle="1" />
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="2" />
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="2" />
<WordsStyle name="NUMBER" styleID="4" fgColor="800000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER1" styleID="14" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER2" styleID="15" fgColor="800080" bgColor="FFFFFF" fontName="" fontStyle="0" />
<WordsStyle name="DELIMINER3" styleID="16" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" />
</Styles>
</UserLang>
</NotepadPlus>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询