Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
clpi committed Dec 2, 2024
1 parent 541dc11 commit 44bd947
Show file tree
Hide file tree
Showing 16 changed files with 80 additions and 108 deletions.
Empty file.
2 changes: 0 additions & 2 deletions lua/word/mod/lsp/completion/treesitter.lua

This file was deleted.

14 changes: 14 additions & 0 deletions lua/word/mod/lsp/declaration/init.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
local I = Mod.create("lsp.declaration")

function I.setup()
return {
loaded = true
}
end
I.config.public = {

}

I.data = {

}

return I
14 changes: 14 additions & 0 deletions lua/word/mod/lsp/definition/init.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
local I = Mod.create("lsp.definition")

function I.setup()
return {
loaded = true
}
end
I.config.public = {

}

I.data = {

}

return I
2 changes: 0 additions & 2 deletions lua/word/mod/lsp/setup.lua

This file was deleted.

55 changes: 0 additions & 55 deletions lua/word/mod/lsp/test/init.lua

This file was deleted.

14 changes: 14 additions & 0 deletions lua/word/mod/lsp/type/init.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,16 @@
local T = Mod.create("lsp.type")

function T.setup()
return {
loaded = true
}
end

T.config.public = {

}

T.data = {

}
return T
1 change: 0 additions & 1 deletion lua/word/mod/lsp/types.lua

This file was deleted.

11 changes: 9 additions & 2 deletions lua/word/mod/mod/init.lua
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
---@type word.mod
local M = require("word.mod").create("mod")

---@class module
M.data = {}

M.setup = function()
return {
loaded = true,
}
end

M.config.public = {

}

---@class module
M.data = {

}

return M
8 changes: 8 additions & 0 deletions lua/word/mod/parse/md/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,13 @@ local p = vim.lpeg

M.data = {
}
M.config.public = {

}
M.setup = function()
return {
loaded = true
}
end

return M
Empty file removed lua/word/mod/parse/md/test.lua
Empty file.
9 changes: 0 additions & 9 deletions lua/word/mod/parse/md/types.lua

This file was deleted.

14 changes: 14 additions & 0 deletions lua/word/mod/parse/scan/init.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
local M = Mod.create("parse.scan")

M.setup = function()
return {
loaded = true
}
end

M.config.public = {

}

M.data = {

}

return M
1 change: 1 addition & 0 deletions lua/word/mod/todo/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ M.config.public = {

M.setup = function()
return {
loaded = true,
requires = { "integration.treesitter" },
}
end
Expand Down
37 changes: 0 additions & 37 deletions lua/word/util/mod.lua

This file was deleted.

6 changes: 6 additions & 0 deletions lua/word/util/parse.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
local P = {}

local lp = require "vim.lpeg"


return P

0 comments on commit 44bd947

Please sign in to comment.