From 806f0e39e3a26c0482895692eb8a6cab4a63504c Mon Sep 17 00:00:00 2001 From: rxi Date: Sat, 19 Dec 2020 10:19:08 +0000 Subject: [PATCH] Added support for `.pyw` files in language_python plugin --- data/plugins/language_python.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/plugins/language_python.lua b/data/plugins/language_python.lua index 4a6ada3..e6315c4 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 = {