diff options
| author | William Boman <william@redwill.se> | 2021-12-19 19:22:21 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-19 19:22:21 +0100 |
| commit | 8a3a28d2f8e755574f0a3afca963217914e9a850 (patch) | |
| tree | f2e54e4eb2ec98506dcbd4e829878f393f6f78af /lua/nvim-lsp-installer/installers/init.lua | |
| parent | feat(health): relax some checks, also improve bourne shell version check (#344) (diff) | |
| download | mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar.gz mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar.bz2 mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar.lz mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar.xz mason-8a3a28d2f8e755574f0a3afca963217914e9a850.tar.zst mason-8a3a28d2f8e755574f0a3afca963217914e9a850.zip | |
fix(ccls): support more Linux dists (#347)
Diffstat (limited to 'lua/nvim-lsp-installer/installers/init.lua')
| -rw-r--r-- | lua/nvim-lsp-installer/installers/init.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/nvim-lsp-installer/installers/init.lua b/lua/nvim-lsp-installer/installers/init.lua index 25d97658..c4ac2747 100644 --- a/lua/nvim-lsp-installer/installers/init.lua +++ b/lua/nvim-lsp-installer/installers/init.lua @@ -1,9 +1,6 @@ local platform = require "nvim-lsp-installer.platform" local log = require "nvim-lsp-installer.log" local Data = require "nvim-lsp-installer.data" -local process = require "nvim-lsp-installer.process" -local fs = require "nvim-lsp-installer.fs" -local path = require "nvim-lsp-installer.path" local M = {} @@ -23,6 +20,7 @@ end ---@field requested_server_version string|nil @The version requested by the user. ---@field stdio_sink StdioSink ---@field github_release_file string|nil @Only available if context.use_github_release_file has been called. +---@field os_distribution table<string, any> @Only available if context.use_os_distribution has been called. ---@field install_dir string ---@alias ServerInstallerFunction fun(server: Server, callback: ServerInstallCallback, context: ServerInstallContext) |
