File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ local M = {}
22
33M .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 )
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ M.test = function(a)
144144end
145145M .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 })
149149end
150150-- print(M.camel_case("helloWorldAaAaAxC"))
Original file line number Diff line number Diff line change 1- local utils = require (" kide.core.utils " )
1+ local utils = require (" kide.tools " )
22local M = {}
33local cjk_mainfont = function ()
44 if utils .is_win then
You can’t perform that action at this time.
0 commit comments