mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-06 09:06:10 +02:00
47 lines
1.5 KiB
Lua
47 lines
1.5 KiB
Lua
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
-- This config is DEPRECATED.
|
|
-- Use the configs in `lsp/` instead (requires Nvim 0.11).
|
|
--
|
|
-- ALL configs in `lua/lspconfig/configs/` will be DELETED.
|
|
-- They exist only to support Nvim 0.10 or older.
|
|
-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
local util = require 'lspconfig.util'
|
|
|
|
return {
|
|
default_config = {
|
|
cmd = { 'sourcekit-lsp' },
|
|
filetypes = { 'swift', 'objc', 'objcpp', 'c', 'cpp' },
|
|
root_dir = function(filename, _)
|
|
return util.root_pattern 'buildServer.json'(filename)
|
|
or util.root_pattern('*.xcodeproj', '*.xcworkspace')(filename)
|
|
-- better to keep it at the end, because some modularized apps contain multiple Package.swift files
|
|
or util.root_pattern('compile_commands.json', 'Package.swift')(filename)
|
|
or vim.fs.dirname(vim.fs.find('.git', { path = filename, upward = true })[1])
|
|
end,
|
|
get_language_id = function(_, ftype)
|
|
local t = { objc = 'objective-c', objcpp = 'objective-cpp' }
|
|
return t[ftype] or ftype
|
|
end,
|
|
capabilities = {
|
|
workspace = {
|
|
didChangeWatchedFiles = {
|
|
dynamicRegistration = true,
|
|
},
|
|
},
|
|
textDocument = {
|
|
diagnostic = {
|
|
dynamicRegistration = true,
|
|
relatedDocumentSupport = true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
docs = {
|
|
description = [[
|
|
https://github.com/swiftlang/sourcekit-lsp
|
|
|
|
Language server for Swift and C/C++/Objective-C.
|
|
]],
|
|
},
|
|
}
|