Browse Source

feature: add go to definition helper

master
Lucas 1 month ago
parent
commit
d4f6dd2612
  1. 5
      lua/helpers.lua

5
lua/helpers.lua

@ -158,6 +158,11 @@ function M.compile_sass()
end
end
function M.go_to_definition()
vim.cmd("vsplit")
vim.lsp.buf.definition()
end
return M
-- vim: ts=4 sts=4 sw=4 expandtab

Loading…
Cancel
Save