mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 02:10:06 +08:00
32 lines
692 B
Lua
32 lines
692 B
Lua
|
local util = require 'lspconfig.util'
|
||
|
local bin_name = 'foam-ls'
|
||
|
local cmd = { bin_name, '--stdio' }
|
||
|
|
||
|
if vim.fn.has 'win32' == 1 then
|
||
|
cmd = { 'cmd.exe', '/C', bin_name, '--stdio' }
|
||
|
end
|
||
|
|
||
|
return {
|
||
|
default_config = {
|
||
|
cmd = cmd,
|
||
|
filetypes = { 'foam', 'OpenFOAM' },
|
||
|
root_dir = function(fname)
|
||
|
return util.search_ancestors(fname, function(path)
|
||
|
if util.path.exists(util.path.join(path, 'system', 'controlDict')) then
|
||
|
return path
|
||
|
end
|
||
|
end)
|
||
|
end,
|
||
|
},
|
||
|
docs = {
|
||
|
description = [[
|
||
|
https://github.com/FoamScience/foam-language-server
|
||
|
|
||
|
`foam-language-server` can be installed via `npm`
|
||
|
```sh
|
||
|
npm install -g foam-language-server
|
||
|
```
|
||
|
]],
|
||
|
},
|
||
|
}
|