Skip to content

Commit

Permalink
fix[filetype]: Recognize Cython source files as Python as well
Browse files Browse the repository at this point in the history
  • Loading branch information
mcepl authored and Felix Van der Jeugt committed Oct 26, 2024
1 parent 8fa44ce commit 7bee661
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/plugins/filetype.lua
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ vis.ftdetect.filetypes = {
},
python = {
utility = { "^python%d?" },
ext = { "%.sc$", "%.py[iw]?$" },
ext = { "%.sc$", "%.py[iwx]?$" },
mime = { "text/x-python", "text/x-script.python" },
},
reason = {
Expand Down

0 comments on commit 7bee661

Please sign in to comment.