-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcoerce.nvim-dev-1.rockspec
More file actions
43 lines (38 loc) · 1.1 KB
/
Copy pathcoerce.nvim-dev-1.rockspec
File metadata and controls
43 lines (38 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
rockspec_format = "3.0"
package = "coerce.nvim"
version = "dev-1"
source = {
url = "git+https://github.com/gregorias/coerce.nvim",
}
description = {
summary = "A Neovim plugin for changing keyword case.",
homepage = "https://github.com/gregorias/coerce.nvim",
license = "GPL-3.0",
}
dependencies = {
"lua >= 5.1",
}
test_dependencies = {
"busted",
"luacov",
}
build = {
type = "builtin",
modules = {
coerce = "lua/coerce.lua",
["coerce.case"] = "lua/coerce/case.lua",
["coerce.conversion"] = "lua/coerce/conversion.lua",
["coerce.keymap"] = "lua/coerce/keymap.lua",
["coerce.operator"] = "lua/coerce/operator.lua",
["coerce.region"] = "lua/coerce/region.lua",
["coerce.selector"] = "lua/coerce/selector.lua",
["coerce.string"] = "lua/coerce/string.lua",
["coerce.table"] = "lua/coerce/table.lua",
["coerce.transformer"] = "lua/coerce/transformer.lua",
["coerce.vim"] = "lua/coerce/vim.lua",
["coerce.vim.api"] = "lua/coerce/vim/api.lua",
["coerce.vim.fn"] = "lua/coerce/vim/fn.lua",
["coerce.vim.lsp"] = "lua/coerce/vim/lsp.lua",
["coerce.visual"] = "lua/coerce/visual.lua",
},
}