blob: 1193a3abb99bccf99c64cbf19c3f4034e0025659 (
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,
}
|