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/powershell_es.lua | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'lua/lspconfig/powershell_es.lua') diff --git a/lua/lspconfig/powershell_es.lua b/lua/lspconfig/powershell_es.lua index c76d5b16..0f621a1d 100644 --- a/lua/lspconfig/powershell_es.lua +++ b/lua/lspconfig/powershell_es.lua @@ -1,15 +1,15 @@ -local configs = require "lspconfig/configs" -local util = require "lspconfig/util" +local configs = require 'lspconfig/configs' +local util = require 'lspconfig/util' -local server_name = "powershell_es" -local temp_path = vim.fn.stdpath "cache" +local server_name = 'powershell_es' +local temp_path = vim.fn.stdpath 'cache' local function make_cmd(bundle_path) if bundle_path ~= nil then local command_fmt = [[%s/PowerShellEditorServices/Start-EditorServices.ps1 -BundledModulesPath %s -LogPath %s/powershell_es.log -SessionDetailsPath %s/powershell_es.session.json -FeatureFlags @() -AdditionalModules @() -HostName nvim -HostProfileId 0 -HostVersion 1.0.0 -Stdio -LogLevel Normal]] local command = command_fmt:format(bundle_path, bundle_path, temp_path, temp_path) - return { "pwsh", "-NoLogo", "-NoProfile", "-Command", command } + return { 'pwsh', '-NoLogo', '-NoProfile', '-Command', command } end end @@ -19,7 +19,7 @@ configs[server_name] = { local bundle_path = new_config.bundle_path new_config.cmd = make_cmd(bundle_path) end, - filetypes = { "ps1" }, + filetypes = { 'ps1' }, root_dir = function(fname) return util.find_git_ancestor(fname) or vim.fn.getcwd() end, @@ -54,7 +54,7 @@ require'lspconfig'.powershell_es.setup{ ``` ]], default_config = { - root_dir = "git root or current directory", + root_dir = 'git root or current directory', }, }, } -- cgit v1.2.3-70-g09d2