From cd1ccf056be9cbcc3d5cbefff08135276bc476ed Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Tue, 13 Jul 2021 10:41:39 -0700 Subject: chore: change stylua to single quotes (#1068) --- lua/lspconfig/phpactor.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lua/lspconfig/phpactor.lua') diff --git a/lua/lspconfig/phpactor.lua b/lua/lspconfig/phpactor.lua index f358f092..658704e8 100644 --- a/lua/lspconfig/phpactor.lua +++ b/lua/lspconfig/phpactor.lua @@ -1,16 +1,16 @@ -local configs = require "lspconfig/configs" -local util = require "lspconfig/util" +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' -local server_name = "phpactor" -local bin_name = "phpactor" +local server_name = 'phpactor' +local bin_name = 'phpactor' configs[server_name] = { default_config = { - cmd = { bin_name, "language-server" }, - filetypes = { "php" }, + cmd = { bin_name, 'language-server' }, + filetypes = { 'php' }, root_dir = function(pattern) local cwd = vim.loop.cwd() - local root = util.root_pattern("composer.json", ".git")(pattern) + local root = util.root_pattern('composer.json', '.git')(pattern) -- prefer cwd if root is a descendant return util.path.is_descendant(cwd, root) and cwd or root @@ -23,7 +23,7 @@ https://github.com/phpactor/phpactor Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation ]], default_config = { - cmd = { "phpactor", "language-server" }, + cmd = { 'phpactor', 'language-server' }, root_dir = [[root_pattern("composer.json", ".git")]], }, }, -- cgit v1.2.3-70-g09d2