diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-01-08 14:54:28 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-01-08 14:54:28 -0200 |
commit | e2f1fe73ae6d5cf2446918022cac89cca8d57fbd (patch) | |
tree | 4ab6dec9720b438431e34e01b7aa29e38a82e086 /config.dot/luakit.link | |
parent | 92ea80c8a10dc379b2e50d46a93184f8fef442b1 (diff) | |
download | luakit-e2f1fe73ae6d5cf2446918022cac89cca8d57fbd.tar.gz luakit-e2f1fe73ae6d5cf2446918022cac89cca8d57fbd.tar.bz2 |
Fixes :yr
Diffstat (limited to 'config.dot/luakit.link')
-rw-r--r-- | config.dot/luakit.link/keys.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.dot/luakit.link/keys.lua b/config.dot/luakit.link/keys.lua index d5cb352..f03a58f 100644 --- a/config.dot/luakit.link/keys.lua +++ b/config.dot/luakit.link/keys.lua @@ -60,7 +60,7 @@ modes.add_binds("normal", { { "^yr$", function (w) local title = w.view.title local uri = string.gsub(w.view.uri or "", " ", "%%20") - local link = '`' .. title .. '` <' .. uri .. '>`_' + local link = '`' .. title .. ' <' .. uri .. '>`_' luakit.selection.primary = link luakit.selection.clipboard = link w:notify("Yanked as reStructuredText link: " .. link) |