diff options
author | SwissalpS <Luke@SwissalpS.ws> | 2020-06-23 17:45:23 +0200 |
---|---|---|
committer | SwissalpS <Luke@SwissalpS.ws> | 2020-06-23 17:45:23 +0200 |
commit | 4894e6af8b2a5d7b5e7344b80ee051aaa03537af (patch) | |
tree | 6d367be9b082f318149c33d37872e5d700973948 /plugins/datetimestamps.lua | |
parent | 3f10c11306e483074f78d6d43b192fb3bb690d64 (diff) | |
download | lite-xl-plugins-4894e6af8b2a5d7b5e7344b80ee051aaa03537af.tar.gz lite-xl-plugins-4894e6af8b2a5d7b5e7344b80ee051aaa03537af.zip |
added format cheat-sheet
Diffstat (limited to 'plugins/datetimestamps.lua')
-rw-r--r-- | plugins/datetimestamps.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/datetimestamps.lua b/plugins/datetimestamps.lua index e755848..518f0a9 100644 --- a/plugins/datetimestamps.lua +++ b/plugins/datetimestamps.lua @@ -2,6 +2,28 @@ local core = require "core" local config = require "core.config" local command = require "core.command" +--[[ +Date and time format placeholders +from https://www.lua.org/pil/22.1.html +%a abbreviated weekday name (e.g., Wed) +%A full weekday name (e.g., Wednesday) +%b abbreviated month name (e.g., Sep) +%B full month name (e.g., September) +%c date and time (e.g., 09/16/98 23:48:10) +%d day of the month (16) [01-31] +%H hour, using a 24-hour clock (23) [00-23] +%I hour, using a 12-hour clock (11) [01-12] +%M minute (48) [00-59] +%m month (09) [01-12] +%p either "am" or "pm" (pm) +%S second (10) [00-61] +%w weekday (3) [0-6 = Sunday-Saturday] +%x date (e.g., 09/16/98) +%X time (e.g., 23:48:10) +%Y full year (1998) +%y two-digit year (98) [00-99] +%% the character `%ยด +--]] config.datetimestamps_format_datestamp = "%Y%m%d" config.datetimestamps_format_datetimestamp = "%Y%m%d_%H%M%S" config.datetimestamps_format_timestamp = "%H%M%S" |