Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add type annotations #565

Draft
wants to merge 22 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6e20ba6
feat: add type annotations for plenary
delphinus Mar 30, 2024
2dc44f7
feat: add type annotations for plenary.path
delphinus Mar 22, 2024
9172c84
feat: add type annotations for plenary.functional
delphinus Mar 23, 2024
ff7dfef
feat: add type annotations for plenary.scandir
delphinus Mar 24, 2024
5a4cc2a
feat: add type annotations for plenary.async
delphinus Mar 31, 2024
b387e64
feat: add type annotations for plenary.tbl
delphinus Mar 31, 2024
3bd8c3c
feat: add type annotations for plenary.job
delphinus Mar 27, 2024
e601d3d
feat: add types for plenary.context_manager
delphinus Mar 27, 2024
dd2e07d
feat: add type annotations for plenary.curl
delphinus Mar 28, 2024
6ce9065
feat: add type annotations for plenary.class
delphinus Mar 28, 2024
8bfda27
feat: add type annotations for plenary.json
delphinus Mar 28, 2024
62df566
feat: add type annotations for plenary.log
delphinus Mar 28, 2024
5b039d3
feat: add type annotations for plenary.strings
delphinus Mar 29, 2024
6c0f514
feat: add type annotations for plenary.enum
delphinus Mar 31, 2024
628aee9
feat: add type annotations for plenary.filetype
delphinus Mar 31, 2024
069970d
feat: add type annotations for plenary.fun
delphinus Apr 3, 2024
292b0f7
feat: add type annotations for plenary.nvim_meta
delphinus Apr 3, 2024
5f67669
feat: add type annotations for plenary.operators
delphinus Apr 3, 2024
6ae5ee3
feat: add type annotations for plenary.reload
delphinus Apr 4, 2024
9373a3d
feat: add type annotations for plenary.window
delphinus Apr 4, 2024
f802730
feat: add type annotations for plenary.run
delphinus Apr 4, 2024
0956f8e
hoge
delphinus Apr 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add type annotations for plenary.scandir
delphinus committed Aug 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit ff7dfef78e54785b606062e3c5a1f0483b03b857
1 change: 1 addition & 0 deletions lua/plenary/init.lua
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@
---@class Plenary
---@field functional PlenaryFunctional
---@field path PlenaryPath
---@field scandir PlenaryScandir
local plenary = setmetatable({}, {
__index = function(t, k)
local ok, val = pcall(require, string.format("plenary.%s", k))
Loading