在 gedit 中创建自定义语法高亮

在 gedit 中创建自定义语法高亮

下列的我的问题从很久以前开始,我就一直在尝试调整我的命运处理能力。终端中的显示非常棒,只剩下一件事——当我添加、编辑或删除单个命运时,Gedit 中的语法突出显示。

我的自定义财富文件采用以下格式:

Friend: "Whats a good movie?"
Me: "Snakes on a plane"
Friend: "Whats it about?"
Me: "Horses... horses on a boat..."
@AYYSIAN
%
Me on my wedding: you still like me, right?
@ComedyPosts
%
Mum: Son I'd love to meet your girlfriend...
Me: Me too...
@ComedyTruth
%
Doctor: "Ok, so what's wrong, how are you feeling?"
Me: *Looks at mum waiting for her to explain*
@ChildhoodFact
%
Friend: 75% of people are good at maths...
Me: Mmmmh, I guess then am in the remaining 18%...
@TheFunnyTeens
%
I loved the Titanic. My favorite character was the iceberg
@__GrumpyCat

基本上就是a tweet@name%角色。然后重复。

当我在 Gedit 中打开它时,一切都是黑色的。
我正在寻找一种方法来创建一个语法高亮文件,将 转换%为蓝色,将@name转换为洋红色。推文可以保持黑色。

笔记:

  1. 财富文件是 mime 类型的text/plain,只有给定的格式才能真正将它们与其他纯文本文件区分开来。
  2. Fortune 文件没有扩展名。

答案1

创建并打开你的财富语言文件:

sudo touch /usr/share/gtksourceview-3.0/language-specs/fortune.lang
sudo -i gedit /usr/share/gtksourceview-3.0/language-specs/fortune.lang

粘贴以下内容:

<?xml version="1.0" encoding="UTF-8"?>
<language id="fortune" _name="Fortune" version="2.0" _section="Markup">
  <metadata>
    <property name="mimetypes">text/plain</property>
    <property name="globs">*.</property>
  </metadata>

  <styles>
    <style id="at"      _name="@ sign"  map-to="def:constant" />
    <style id="percent" _name="percent sign"  map-to="def:comment" />
  </styles>
  <definitions>
    <context id="fortune">
      <include>
        <context id="at" style-ref="at">
          <start>@</start>
          <end>$</end>
        </context>
        <context id="percent" style-ref="percent">
          <start>%</start>
          <end>$</end>
        </context>
      </include>
    </context>
  </definitions>
</language>

确保其可访问:

sudo chmod 0644 /usr/share/gtksourceview-2.0/language-specs/screenplay.lang

重新启动 gedit。

参考-我的来源答案

我的代词是“他”

相关内容