修改gedit语法突出显示文件
我正在尝试从Gedit更改突出显示文件。我已经修改了/usr/share/gtksourceview-3.0/language-specs/fortran.lang文件,因为我想更改编辑器将语句作为注释的情况。我的问题是,当我选择新的突出显示方案时,没有任何突出显示,而是仅保留为纯文本。 使用su权限打开了文件fortran.lang,我只是将所有内容复制粘贴到新的Gedit文件中,然后将其另存为fortran_enhanced.lang在同一文件夹中。我对原始文件所做的更改是: 原始的fortran.lang文件: <language id="fortran" _name="Fortran 95" version="2.0" _section="Sources"> <metadata> <property name="mimetypes">text/x-fortran</property> <property name="globs">*.f;*.f90;*.f95;*.for</property> <property name="line-comment-start">!</property> </metadata> <styles> <style id="comment" _name="Comment" map-to="def:comment"/> <style id="floating-point" _name="Floating Point" map-to="def:floating-point"/> <style id="keyword" _name="Keyword" map-to="def:keyword"/> <style id="intrinsic" _name="Intrinsic function" map-to="def:builtin"/> <style id="boz-literal" _name="BOZ Literal" map-to="def:base-n-integer"/> <style id="decimal" _name="Decimal" map-to="def:decimal"/> <style id="type" _name="Data Type" map-to="def:type"/> …