Skip to content

Commit

Permalink
lua: filetype: fix fstab detection
Browse files Browse the repository at this point in the history
same as last commit, `fstab.lua` shouldn't be matched as `fstab`
  • Loading branch information
rnpnr committed Oct 5, 2023
1 parent 7445c33 commit cbaa0d8
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 @@ -152,7 +152,7 @@ vis.ftdetect.filetypes = {
ext = { "%.fs$" },
},
fstab = {
ext = { "fstab" },
ext = { "^fstab$" },
},
gap = {
ext = { "%.g$", "%.gd$", "%.gi$", "%.gap$" },
Expand Down

0 comments on commit cbaa0d8

Please sign in to comment.