aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/robotcode.lua
blob: 2cd51b19a43bea3ff96d8a84d5486d526e79cefd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
---@brief
---
---https://robotcode.io
--
-- RobotCode - Language Server Protocol implementation for Robot Framework.
return {
  cmd = { 'robotcode', 'language-server' },
  filetypes = { 'robot', 'resource' },
  root_markers = { 'robot.toml', 'pyproject.toml', 'Pipfile', '.git' },
  get_language_id = function(_, _)
    return 'robotframework'
  end,
}