24 lines
743 B
XML
24 lines
743 B
XML
<?xml version="1.0" encoding="UTF-8"?><!-- kate: space-indent on; indent-width 2; strip on; -->
|
|
<!DOCTYPE language SYSTEM "language.dtd">
|
|
<language name="PythonConsole" hidden="TRUE">
|
|
<syntax>
|
|
<context name="Normal">
|
|
<Regex pattern="^>>> " context="InputLine" style="PS1"/>
|
|
<Regex pattern="^\.\.\. " context="InputLineCont" style="PS2"/>
|
|
</context>
|
|
|
|
<context name="InputLine" eol-context="#pop">
|
|
<IncludeRules from="##Python##Normal"/>
|
|
</context>
|
|
|
|
<context name="InputLineCont" eol-context="#pop">
|
|
<IncludeRules from="##Python##Normal"/>
|
|
</context>
|
|
</syntax>
|
|
|
|
<styles>
|
|
<style name="PS1" default-style="Keyword"/>
|
|
<style name="PS2" default-style="Keyword"/>
|
|
</styles>
|
|
</language>
|