I'm using neovim with coc extension. I add the robotframework_ls server for lsp.
My project is stored in the following directory: /home/jchabrol/personaltools/robot with the following tree: keywords (with all .resource keywords) tests (with all .robot test file)
My coc-settings.json is like this:
{
"languageserver": {
"robotframework_ls": {
"command": "robotframework_ls",
"filetypes": ["robot"],
"settings": {
"robot.lint.robocop.enabled":true,
"robot.pythonpath":["~/robot",
"${workspaceFolder}/robot"
]
}
}
}
}
When I open a test .robot file the coc or lsp server didn't find local keywork
or
I try different configuration without any results.
