remove semicolons (#1035)
This commit is contained in:
committed by
GitHub
parent
1b8757e530
commit
9ec710e338
@@ -15,7 +15,7 @@ local M = {}
|
|||||||
|
|
||||||
function M.focus()
|
function M.focus()
|
||||||
M.open()
|
M.open()
|
||||||
view.focus();
|
view.focus()
|
||||||
end
|
end
|
||||||
|
|
||||||
---@deprecated
|
---@deprecated
|
||||||
|
|||||||
@@ -147,8 +147,8 @@ function M.print_clipboard()
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function copy_to_clipboard(content)
|
local function copy_to_clipboard(content)
|
||||||
vim.fn.setreg('+', content);
|
vim.fn.setreg('+', content)
|
||||||
vim.fn.setreg('"', content);
|
vim.fn.setreg('"', content)
|
||||||
return a.nvim_out_write(string.format('Copied %s to system clipboard! \n', content))
|
return a.nvim_out_write(string.format('Copied %s to system clipboard! \n', content))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user