aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/docgen.lua
Commit message (Collapse)AuthorAgeFilesLines
...
* docgen: when no description provided fallback to reading function from sourceMichael Lingelbach2021-03-191-0/+17
|
* docgen: fix if malformed json entries presentMichael Lingelbach2021-01-261-0/+3
|
* Remove all installers and install logicMichael Lingelbach2021-01-031-5/+0
|
* Separate autogenerated readme from readme.mdMichael Lingelbach2020-12-201-1/+1
|
* docgen: add '-v' option to curl for debuggingHirokazu Hata2020-11-151-1/+1
| | | | | docgen script sometimes fails at downloading language server phase. But we can't know which language server's docgen phase was failed.
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-6/+6
|
* docgen: escape GitHub Flavored Markdown punctuation charactersHirokazu Hata2020-06-131-1/+8
| | | | https://github.github.com/gfm/#backslash-escapes
* docgen: use package.json url instead of VSCode extension nameHirokazu Hata2020-05-181-26/+0
| | | | | VSCode extensions are so large size and we offten get a network error with downloading them. So we had better to directory download package.json.
* docgen.lua: call require_all_configs() earlierJustin M. Keyes2020-02-021-1/+1
| | | | It is also needed by make_implemented_servers_list().
* docgen.lua: require() all configsJustin M. Keyes2020-02-021-0/+9
| | | | | Since 6d380677502d, configs are lazy-loaded. So docgen.lua needs to require() them explicitly.
* rename "skeleton" to "configs"Justin M. Keyes2020-01-311-1/+1
| | | | | ref b487481e19ab ref #100
* rename "skeleton" to "configs" #100Michael Lingelbach2020-01-311-3/+3
| | | | | | | | | | | | | | `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-7/+7
|
* remove Vimscript wrapper nvim_lsp#setup()Justin M. Keyes2019-12-081-3/+2
| | | | | | | | | | | | Lua is easy to use from Vimscript, there is no reason to have multiple ways to work with nvim-lsp. - massively clarifies the "story" that users need to comprehend - reduces surface area, maintenance, tests - avoids constant "Vim or Lua" dance in the documentation - simplifies discussions, tutorials, etc. - avoids confusing situation for users that start with Vimscript but later need Lua-only features
* Add retry logic to docgen. (#54)Ashkan Kiani2019-11-261-16/+20
|
* Add sumneko_lua installation and util.sh helper. (#49)Ashkan Kiani2019-11-261-13/+33
| | | | | | | | * Add sumneko_lua installation and util.sh helper. * Add vspackage extraction for package.json information via vscode name. * Allow specifying a tempdir at DOCGEN_TEMPDIR * Fix on_new_config and add docs for root_dir * User settings titles are not always useful
* Add package_json for pyls and update docgen (#32)Ashkan Kiani2019-11-171-1/+4
|
* Refactor docgen and add package.json support (#29)Ashkan Kiani2019-11-171-102/+170
|
* Use a template for README.md (#28)Ashkan Kiani2019-11-171-19/+21
|
* Improve docgen (#27)Ashkan Kiani2019-11-171-56/+88
| | | | | - Automatically generate the `Implemented servers` section. - Remove dependency on `cat` - Provide scripts/docgen.sh which actually reports errors.
* Redo installation. (#17)Ashkan Kiani2019-11-151-3/+11
| | | | | | | | | | | | | | | * 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
* Texlab settings (#14)Christian Clason2019-11-151-1/+1
| | | | * mark settings markdown as lua * add complete set of (default) options for texlab
* Add ElmLS (#9)Ashkan Kiani2019-11-141-2/+5
| | | | | | | | | | | | | - Initial add of elmLS support - Removes unnecessary vim.schedule_wrap fn calls in elmls & clangd impls - Add automatic installation for elmls and update docs. - Sort server output in the README. - Add commands for elmls for buffer and globally. - [bugfix] Skeleton could've tried to attach even if root_dir was nil TODO: check for updates and warn the user if there are updates when an elm server is started. Co-authored-by: Seth Messer <seth.messer@gmail.com>
* Improve documentation and docgen command.Ashkan Kiani2019-11-141-0/+3
| | | | Also improve the recommended command for running docgen.
* Add initial support for python-language-server (#3)Christian Clason2019-11-141-1/+2
| | | | | | | | | * initial support for python-language-server * put settings in documentation also: update docgen script update setup call examples in README_preamble
* Clean up docs.Ashkan Kiani2019-11-141-3/+2
|
* Rename to nvim_lsp and nvim-lsp.Ashkan Kiani2019-11-141-3/+3
|
* Use new skeleton. Add docs generator.Ashkan Kiani2019-11-141-0/+106