diff options
| author | Ashkan Kiani <ashkan.k.kiani@gmail.com> | 2019-11-14 01:07:09 -0800 |
|---|---|---|
| committer | Ashkan Kiani <ashkan.k.kiani@gmail.com> | 2019-11-14 01:07:09 -0800 |
| commit | 9666b63a70e28b1eef084489a44ea4b4bb4ae65a (patch) | |
| tree | 5870a50d5bce771ca0cde5ae0fe5eba52aa14fdf /lua | |
| parent | Fix README links. (diff) | |
| download | nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar.gz nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar.bz2 nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar.lz nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar.xz nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.tar.zst nvim-lspconfig-9666b63a70e28b1eef084489a44ea4b4bb4ae65a.zip | |
Rename to nvim_lsp and nvim-lsp.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/common_lsp.lua | 16 | ||||
| -rw-r--r-- | lua/nvim_lsp.lua | 16 | ||||
| -rw-r--r-- | lua/nvim_lsp/clangd.lua (renamed from lua/common_lsp/clangd.lua) | 4 | ||||
| -rw-r--r-- | lua/nvim_lsp/gopls.lua (renamed from lua/common_lsp/gopls.lua) | 4 | ||||
| -rw-r--r-- | lua/nvim_lsp/skeleton.lua (renamed from lua/common_lsp/skeleton.lua) | 6 | ||||
| -rw-r--r-- | lua/nvim_lsp/texlab.lua (renamed from lua/common_lsp/texlab.lua) | 4 | ||||
| -rw-r--r-- | lua/nvim_lsp/util.lua (renamed from lua/common_lsp/util.lua) | 2 |
7 files changed, 26 insertions, 26 deletions
diff --git a/lua/common_lsp.lua b/lua/common_lsp.lua deleted file mode 100644 index 4dea8e1e..00000000 --- a/lua/common_lsp.lua +++ /dev/null @@ -1,16 +0,0 @@ -local skeleton = require 'common_lsp/skeleton' -require 'common_lsp/gopls' -require 'common_lsp/texlab' -require 'common_lsp/clangd' - -local M = { - util = require 'common_lsp/util'; -} - -local mt = {} -function mt:__index(k) - return skeleton[k] -end - -return setmetatable(M, mt) --- vim:et ts=2 sw=2 diff --git a/lua/nvim_lsp.lua b/lua/nvim_lsp.lua new file mode 100644 index 00000000..7868e3a4 --- /dev/null +++ b/lua/nvim_lsp.lua @@ -0,0 +1,16 @@ +local skeleton = require 'nvim_lsp/skeleton' +require 'nvim_lsp/gopls' +require 'nvim_lsp/texlab' +require 'nvim_lsp/clangd' + +local M = { + util = require 'nvim_lsp/util'; +} + +local mt = {} +function mt:__index(k) + return skeleton[k] +end + +return setmetatable(M, mt) +-- vim:et ts=2 sw=2 diff --git a/lua/common_lsp/clangd.lua b/lua/nvim_lsp/clangd.lua index 465af674..b0d4ec25 100644 --- a/lua/common_lsp/clangd.lua +++ b/lua/nvim_lsp/clangd.lua @@ -1,5 +1,5 @@ -local skeleton = require 'common_lsp/skeleton' -local util = require 'common_lsp/util' +local skeleton = require 'nvim_lsp/skeleton' +local util = require 'nvim_lsp/util' local lsp = vim.lsp local default_capabilities = lsp.protocol.make_client_capabilities() diff --git a/lua/common_lsp/gopls.lua b/lua/nvim_lsp/gopls.lua index e3061d16..86f5e7be 100644 --- a/lua/common_lsp/gopls.lua +++ b/lua/nvim_lsp/gopls.lua @@ -1,5 +1,5 @@ -local skeleton = require 'common_lsp/skeleton' -local util = require 'common_lsp/util' +local skeleton = require 'nvim_lsp/skeleton' +local util = require 'nvim_lsp/util' local lsp = vim.lsp skeleton.gopls = { |
