aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/tsserver.lua
Commit message (Collapse)AuthorAgeFilesLines
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-50/+0
|
* config: remove unnecessary code comennts and utf8 optionHirokazu Hata2020-05-181-3/+1
| | | | | Remove meaningless code comments because they are increased by copy and paste. Currently, utf8 options are only supported by clangd, so remove them from unnecessary ones.
* Fix: Check that vim.fn.has returns 1 in tsserver moduleJuan Hernández2020-05-071-1/+1
| | | | | In Lua 0 and 1 are both truthy values. We have to check for 1 (or 0) explicitly in order to use those values in a conditional.
* Fix 'Can't get tsserver to work #164' (#222)YAMAMOTO Yuji2020-05-071-0/+3
|
* tsserver.lua: add alternative root markers #210Tan Kian2020-04-281-2/+2
|
* window/showMessage: the display level can be set for 'window/showMessage' ↵Hirokazu Hata2020-02-241-2/+0
| | | | | | notification related with #127
* lua: remove `settings = {}`Hirokazu Hata2020-02-161-1/+0
| | | | configs.lua set settings vim.empty_dict() as default
* rename "skeleton" to "configs" #100Michael Lingelbach2020-01-311-4/+4
| | | | | | | | | | | | | | `nvim_lsp/skeleton.lua` is not really a skeleton, it's a `configs` class that provides 1. actual functionality 2. a bunch of configs Each config is added to the `configs` object (FKA "skeleton") as a property. Those configs are not "templates", they are "configs". So we should clean up the wording in various places to say "config" instead of "skeleton"/"template". Closes #64
* CI: luacheck #86Hirokazu Hata2019-12-311-1/+1
|
* Redo installation. (#17)Ashkan Kiani2019-11-151-77/+20
| | | | | | | | | | | | | | | * Redo installation. Servers which want to be auto installed should specify skeleton[name].install() and it will be automatically added to the list of installable servers. - Add :LspInstall and :LspInstallInfo - Auto generate docs for servers with .install() available. - Add util.npm_installer - Refactor utf8 capabilities common config into a single function - Add contribution notes. - Also expose util.base_install_dir for other installers potentially - Fix tsserver's arguments and add javascript filetypes
* Initial typescript support (#8)Jesse Hoyos2019-11-151-0/+109