Crie um destaque de sintaxe personalizado no gedit

8

Seguindo minha pergunta de muito tempo atrás, eu ainda estou tentando para ajustar minhas capacidades de manipulação de fortuna. O display no terminal é incrível, apenas uma coisa permanece - realce de sintaxe no Gedit como adicionar, editar ou excluir fortunas individuais.

Meus arquivos personalizados de fortunas estão neste formato:

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

São basicamente a tweet , @name e o caractere % . Então repita.

Quando abro no Gedit, tudo é preto.
Eu estou procurando uma maneira de criar um arquivo de realce de sintaxe que irá converter o % para algo como azul eo @name para algo como magenta. O tweet pode permanecer preto.

NOTA:

  1. Os arquivos da sorte são do tipo mime text/plain e somente o formato dado os distingue de outro arquivo de texto simples.
  2. Os arquivos da Fortune não têm extensão.
por Parto 27.05.2014 / 22:11

1 resposta

8

Crie e abra seu arquivo de idioma da fortuna:

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

Cole o seguinte:

<?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>

Verifique se está acessível:

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

Reinicie o gedit.

Referência - minha resposta de origem

    
por Tim 27.05.2014 / 23:15