Skip to content

Commit 6b9c69d

Browse files
committed
fix: 包目录
1 parent 3f8ebcc commit 6b9c69d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lua/kide/lsp/sonarlint.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ local M = {}
22

33
M.setup = function()
44
if "Y" == vim.env["SONARLINT_ENABLE"] then
5-
local vscode = require("kide.core.vscode")
6-
local utils = require("kide.core.utils")
5+
local vscode = require("kide.vscode")
6+
local utils = require("kide.tools")
77
local sonarlint_ls = vscode.find_one("/sonarsource.sonarlint-vscode*/server/sonarlint-ls.jar")
88
if not sonarlint_ls then
99
vim.notify("sonarlint not found", vim.log.levels.WARN)

lua/kide/tools/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ M.test = function(a)
144144
end
145145
M.camel_case_init = function()
146146
vim.api.nvim_create_user_command("CamelCase", function(o)
147-
require("kide.core.utils").camel_case_start(o.range, o.line1, o.line2)
147+
require("kide.tools").camel_case_start(o.range, o.line1, o.line2)
148148
end, { range = 0, nargs = 0 })
149149
end
150150
-- print(M.camel_case("helloWorldAaAaAxC"))

lua/kide/tools/pandoc.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local utils = require("kide.core.utils")
1+
local utils = require("kide.tools")
22
local M = {}
33
local cjk_mainfont = function()
44
if utils.is_win then

0 commit comments

Comments
 (0)