add table size

This commit is contained in:
Yannick Reiß 2024-02-18 19:45:14 +01:00
parent 1c871e99c0
commit 70dcc9d091
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 1 additions and 2 deletions

View File

@ -2,7 +2,6 @@ local M = {}
function M.lookup()
local keywords = vim.fn.getreg("*") -- receive yanked text
keywords = keywords:sub(2, #keywords)
local url = "https://dl.acm.org/action/doSearch?AllField=" .. keywords
url, empty = url:gsub(" ", "+")
@ -37,7 +36,7 @@ function M.lookup()
print("Keywords: " .. keywords)
print("URL: " .. url)
print("links: " .. doi_links[0])
print("Links: " .. #doi_links)
end
return M