diff options
author | terminaldweller <devi@terminaldweller.com> | 2023-03-19 14:12:25 +0000 |
---|---|---|
committer | terminaldweller <devi@terminaldweller.com> | 2023-03-19 14:12:25 +0000 |
commit | 91825fd01004093376f0c165ed1961d749055b37 (patch) | |
tree | c9cb66150226b762f00fd95487346537c8008bbd /lclipd.lua | |
parent | updated the README (diff) | |
download | lclip-91825fd01004093376f0c165ed1961d749055b37.tar.gz lclip-91825fd01004093376f0c165ed1961d749055b37.zip |
changed the help text for the hist-size option, remove the json vendored dependency
Diffstat (limited to '')
-rwxr-xr-x | lclipd.lua | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -105,7 +105,8 @@ local function lclip_exit(n) end local parser = argparse() -parser:option("-s --hist_size", "history file size", 200) +parser:option("-s --hist_size", + "number of distinct entries for clipboard history", 200) --- Log the given string to syslog with the given priority. -- @param log_str the string passed to the logging facility |