diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2021-12-05 22:56:04 -0500 |
---|---|---|
committer | jgmdev <jgmdev@gmail.com> | 2022-05-22 13:02:00 -0400 |
commit | 3fcf065be6387c5bb38a46924f5ea1a7bb17850d (patch) | |
tree | 19b3c571c7e1beae325049e56e3df12a0a647637 /plugins/datetimestamps.lua | |
parent | c569b3b3697c1656c78ec4b4d233d4ed78fa898a (diff) | |
download | lite-xl-plugins-3fcf065be6387c5bb38a46924f5ea1a7bb17850d.tar.gz lite-xl-plugins-3fcf065be6387c5bb38a46924f5ea1a7bb17850d.zip |
Appropriately merged config hashes.
Diffstat (limited to 'plugins/datetimestamps.lua')
-rw-r--r-- | plugins/datetimestamps.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/datetimestamps.lua b/plugins/datetimestamps.lua index c08547f..bd208f7 100644 --- a/plugins/datetimestamps.lua +++ b/plugins/datetimestamps.lua @@ -2,6 +2,7 @@ local core = require "core" local config = require "core.config" local command = require "core.command" +local common = require "core.common" --[[ Date and time format placeholders @@ -25,11 +26,11 @@ from https://www.lua.org/pil/22.1.html %y two-digit year (98) [00-99] %% the character `%ยด --]] -config.plugins.datetimestamps = { +config.plugins.datetimestamps = common.merge({ format_datestamp = "%Y%m%d" format_datetimestamp = "%Y%m%d_%H%M%S" format_timestamp = "%H%M%S" -} +}, config.plugins.datetimestamps) local function datestamp() local sOut = os.date(config.plugins.datetimestamps.format_datestamp) |