diff options
| author | Adam <adamdharrison@gmail.com> | 2021-11-02 09:03:24 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-02 09:03:24 -0400 |
| commit | faea2a7f91923bd285f2b3af0c19d5f80e01b210 (patch) | |
| tree | 3c24294d1c09c4ce91969fdee5a0f425580c0e82 | |
| parent | 033575c9f459e65a6fb0b3d12d6660793316f73d (diff) | |
| parent | cd10497b495f42f5cb102aac93af3e9280e65619 (diff) | |
| download | lite-xl-faea2a7f91923bd285f2b3af0c19d5f80e01b210.tar.gz lite-xl-faea2a7f91923bd285f2b3af0c19d5f80e01b210.zip | |
Merge pull request #648 from piotrek94692/patch-1
Use Python syntax highlighting for Ren'Py scripts.
| -rw-r--r-- | data/plugins/language_python.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/plugins/language_python.lua b/data/plugins/language_python.lua index e19caa63..252a0d14 100644 --- a/data/plugins/language_python.lua +++ b/data/plugins/language_python.lua @@ -2,7 +2,7 @@ local syntax = require "core.syntax" syntax.add { - files = { "%.py$", "%.pyw$" }, + files = { "%.py$", "%.pyw$", "%.rpy$" }, headers = "^#!.*[ /]python", comment = "#", patterns = { |
