add filetypes to cronex

This commit is contained in:
2025-06-29 15:47:48 +02:00
parent 3f43f928bd
commit a33efa0d4e
+1 -1
View File
@@ -202,7 +202,7 @@ require'lazy'.setup{ --{{{1
require'cronex'.setup{ require'cronex'.setup{
-- The plugin will automatically start (with autocommand) for these types of files. -- The plugin will automatically start (with autocommand) for these types of files.
-- User can manually on any filetype turn explanations on(off) with the commands CronExplainedEnable(CronExplainedDisable) -- User can manually on any filetype turn explanations on(off) with the commands CronExplainedEnable(CronExplainedDisable)
file_patterns = { "*.yaml", "*.yml", "*.tf", "*.cfg", "*.config", "*.conf", "*.cs", "*.go", "*.sh", "*.bash", "*.py" }, file_patterns = { "*.lua", "*.py", "*.c", "*.cpp", "*.hpp", "*.cs", "*.java", "*.go", "*.zig", "*.rust", "*.bash", "*.sh", "*.yaml", "*.yml", "*.json", "*.toml", },
extractor = { -- Configuration on how to extract cron expressions goes here: extractor = { -- Configuration on how to extract cron expressions goes here:
-- cron_from_line: Function to search cron expression in line -- cron_from_line: Function to search cron expression in line
cron_from_line = require("cronex.cron_from_line").cron_from_line, cron_from_line = require("cronex.cron_from_line").cron_from_line,