diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2023-03-15 19:24:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 19:24:04 +0100 |
commit | 6e674886825d36a08ea2e5b4ae89f9e996f79ac6 (patch) | |
tree | dd4bb161342aead67751a217e6715b509c58eeca /plugins | |
parent | 3bdc82b382f5cfbf05c7b2a3f454e9ed4985e2f7 (diff) | |
download | lite-xl-plugins-6e674886825d36a08ea2e5b4ae89f9e996f79ac6.tar.gz lite-xl-plugins-6e674886825d36a08ea2e5b4ae89f9e996f79ac6.zip |
`primary_selection`: Add backoff time between retries (#215)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/primary_selection.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/primary_selection.lua b/plugins/primary_selection.lua index 4f8d71a..e061b76 100644 --- a/plugins/primary_selection.lua +++ b/plugins/primary_selection.lua @@ -106,6 +106,7 @@ local function delayed_copy() if written == 0 or not written then if retry > 0 then retry = retry - 1 + coroutine.yield(((3-retry) ^ 2) * 0.05) else core.error("Error while setting primary selection. "..(err or "")) break |