diff --git a/lua/lspconfig/server_configurations/sourcekit.lua b/lua/lspconfig/server_configurations/sourcekit.lua index b91ef95f4e..b09e81eae3 100644 --- a/lua/lspconfig/server_configurations/sourcekit.lua +++ b/lua/lspconfig/server_configurations/sourcekit.lua @@ -12,11 +12,11 @@ return { or util.find_git_ancestor(filename) end, get_language_id = function(_, ftype) - if ftype == "objc" then - return "objective-c" + if ftype == 'objc' then + return 'objective-c' end - if ftype == "objcpp" then - return "objective-cpp" + if ftype == 'objcpp' then + return 'objective-cpp' end return ftype end,