aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/datetimestamps.lua11
1 files changed, 8 insertions, 3 deletions
diff --git a/plugins/datetimestamps.lua b/plugins/datetimestamps.lua
index bd208f7..2880f99 100644
--- a/plugins/datetimestamps.lua
+++ b/plugins/datetimestamps.lua
@@ -27,8 +27,8 @@ from https://www.lua.org/pil/22.1.html
%% the character `%ยด
--]]
config.plugins.datetimestamps = common.merge({
- format_datestamp = "%Y%m%d"
- format_datetimestamp = "%Y%m%d_%H%M%S"
+ format_datestamp = "%Y%m%d",
+ format_datetimestamp = "%Y%m%d_%H%M%S",
format_timestamp = "%H%M%S"
}, config.plugins.datetimestamps)
@@ -50,6 +50,11 @@ end
command.add("core.docview", {
["datetimestamps:insert-datestamp"] = datestamp,
["datetimestamps:insert-timestamp"] = timestamp,
- ["datetimestamps:insert-datetimestamp"] = datetimestamp
+ ["datetimestamps:insert-datetimestamp"] = datetimestamp,
+ ["datetimestamps:insert-custom"] = function()
+ core.command_view:enter("Date format eg: %H:%M:%S", function(cmd)
+ core.active_view.doc:text_input(os.date(cmd) or "")
+ end)
+ end,
})