gedit構文強調表示ファイルを変更する
ハイライトファイルをGeditから変更しようとしています。/usr/share/gtksourceview-3.0/language-specs/fortran.langファイルを変更しました。これは、エディターがコメントとしてステートメントを受け取るケースを変更したいためです。私が抱えている問題は、新しい強調表示スキームを選択しても、何も強調表示されず、プレーンテキストのままであることです。 ファイルfortran.langはsu権限で開かれ、すべてを新しい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"/> …