diff options
| author | rxi <rxi@users.noreply.github.com> | 2020-12-19 10:19:08 +0000 |
|---|---|---|
| committer | rxi <rxi@users.noreply.github.com> | 2020-12-19 10:19:37 +0000 |
| commit | 806f0e39e3a26c0482895692eb8a6cab4a63504c (patch) | |
| tree | 7a9ee16422d3506a769795349975f5421b5836de /data/plugins/language_python.lua | |
| parent | 79c4f9fcae94a801de7b8c44bb7eae0b1aaaec8f (diff) | |
| download | lite-xl-806f0e39e3a26c0482895692eb8a6cab4a63504c.tar.gz lite-xl-806f0e39e3a26c0482895692eb8a6cab4a63504c.zip | |
Added support for `.pyw` files in language_python plugin
Diffstat (limited to 'data/plugins/language_python.lua')
| -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 4a6ada33..e6315c4b 100644 --- a/data/plugins/language_python.lua +++ b/data/plugins/language_python.lua @@ -1,7 +1,7 @@ local syntax = require "core.syntax" syntax.add { - files = "%.py$", + files = { "%.py$", "%.pyw$" }, headers = "^#!.*[ /]python", comment = "#", patterns = { |
