From 85871ce1e046916feedff87897f43d687477ab86 Mon Sep 17 00:00:00 2001 From: SwissalpS Date: Sat, 20 Jun 2020 19:31:54 +0200 Subject: added date- and time-stamps insertion change the formats to what you like --- plugins/datetimestamps.lua | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 plugins/datetimestamps.lua (limited to 'plugins/datetimestamps.lua') diff --git a/plugins/datetimestamps.lua b/plugins/datetimestamps.lua new file mode 100644 index 0000000..749268a --- /dev/null +++ b/plugins/datetimestamps.lua @@ -0,0 +1,33 @@ +local core = require "core" +local command = require "core.command" + +local function datestamp() + + local sOut = os.date('%Y%m%d') + + core.active_view.doc:text_input(sOut) + +end + +local function datetimestamp() + + local sOut = os.date('%Y%m%d_%H%M%S') + + core.active_view.doc:text_input(sOut) + +end + +local function timestamp() + + local sOut = os.date('%H%M%S') + + core.active_view.doc:text_input(sOut) + +end + +command.add("core.docview", { + ["datetimestamps:datestamp"] = datestamp, + ["datetimestamps:timestamp"] = timestamp, + ["datetimestamps:datetimestamp"] = datetimestamp +}) + -- cgit v1.2.3