mirror of
https://github.com/lewis6991/gitsigns.nvim
synced 2025-04-01 22:58:44 +00:00
feat: add type annotations for modules
This commit is contained in:
parent
9521fe8be3
commit
ac5aba6dce
@ -7,6 +7,7 @@ local config = Config.config
|
||||
local api = vim.api
|
||||
local uv = vim.uv or vim.loop
|
||||
|
||||
--- @class gitsigns.main
|
||||
local M = {}
|
||||
|
||||
local cwd_watcher ---@type uv.uv_fs_event_t?
|
||||
@ -222,7 +223,8 @@ function M.setup(cfg)
|
||||
setup_cwd_head()
|
||||
end
|
||||
|
||||
return setmetatable(M, {
|
||||
--- @type gitsigns.main|gitsigns.actions|gitsigns.attach|gitsigns.debug
|
||||
M = setmetatable(M, {
|
||||
__index = function(_, f)
|
||||
local attach = require('gitsigns.attach')
|
||||
if attach[f] then
|
||||
@ -242,3 +244,5 @@ return setmetatable(M, {
|
||||
end
|
||||
end,
|
||||
})
|
||||
|
||||
return M
|
||||
|
@ -14,6 +14,7 @@ local cache = require('gitsigns.cache').cache
|
||||
local api = vim.api
|
||||
local current_buf = api.nvim_get_current_buf
|
||||
|
||||
--- @class gitsigns.actions
|
||||
local M = {}
|
||||
|
||||
--- @class Gitsigns.CmdParams.Smods
|
||||
|
@ -15,6 +15,7 @@ local throttle_by_id = require('gitsigns.debounce').throttle_by_id
|
||||
local api = vim.api
|
||||
local uv = vim.loop
|
||||
|
||||
--- @class gitsigns.attach
|
||||
local M = {}
|
||||
|
||||
--- @param name string
|
||||
|
@ -1,5 +1,6 @@
|
||||
local log = require('gitsigns.debug.log')
|
||||
|
||||
--- @class gitsigns.debug
|
||||
local M = {}
|
||||
|
||||
--- @param raw_item any
|
||||
|
Loading…
Reference in New Issue
Block a user