mirror of
https://github.com/neovim/neovim.git
synced 2025-12-16 03:15:39 +00:00
fix: type fixes
Type fixes caught by emmylua
This commit is contained in:
committed by
Lewis Russell
parent
4c333fdbb7
commit
3b6084ddf4
@@ -22,7 +22,7 @@ end
|
||||
function M.paste(reg)
|
||||
local clipboard = reg == '+' and 'c' or 'p'
|
||||
return function()
|
||||
local contents = nil
|
||||
local contents = nil --- @type string?
|
||||
local id = vim.api.nvim_create_autocmd('TermResponse', {
|
||||
callback = function(args)
|
||||
local resp = args.data.sequence ---@type string
|
||||
|
||||
Reference in New Issue
Block a user