aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/README_template.md
Commit message (Collapse)AuthorAgeFilesLines
* ci: rename README_template.md #3357Justin M. Keyes2024-10-061-14/+0
| | | | The name `README_template.md` is confusing, because it is not related to the README (that changed long ago).
* docs: hide modeline #3356Jan Fooken2024-10-061-0/+2
|
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-4/+4
| | | | | | | | | | | | | | Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.
* docs: unverbose, mention "settings" paramJustin M. Keyes2022-06-131-3/+4
| | | | | | | | | | | | | | | | | Problem: - The docs are verbose. - The "settings" param is not really clarified anywhere. Solution: - Mention the "settings" param in the README. - Tighten up the wording. - Remove the "Use a loop to conveniently call 'setup'..." advice in the docs. It confuses users and doesn't really save much code. - Start to reduce the scope of nvim-lspconfig. - For example, it is redundant for it to document general LSP things. Thus, the help section *lspconfig-lsp* was removed. closes #1951
* fix(help): workaround plugin/users overwritting tags (#1512)Javier Lopez2021-11-301-0/+3
| | | | | | | | | | | | | Most plugin managers run :helptags in the plugin, which silently overwrites the existing doc/tags. this is an issue for us since lspconfig is manipulating the tags file to point to servers_configurations.md Instead create a markdown comment with the name of the wanted tag and make a copy in the repository of servers_configurations.md to server_configurations.txt. Now when :helptags runs it finds the txt file and generates the appropriate tag. The advantage is this solution should work in all platforms, it also removes lines from docgen CI.
* docs: make |lspconfig-server-configurations| jump to the markdown file (#1497)Michael Lingelbach2021-11-271-1/+1
| | | | | | | | | | * generating the tags at docgen and modifying the |lspconfig-server-configurations| tag allows `:help lspconfig-server-configurations` take you to ./doc/server_configurations.md * adding a modeline to the markdown file ensures it sets the correct filetype Co-authored-by: Javier López <graulopezjavier@gmail.com>
* Separate autogenerated readme from readme.mdMichael Lingelbach2020-12-201-242/+1
|
* Rename nvim_lsp to lspconfigHirokazu Hata2020-09-061-28/+28
|
* Merge pull request #238 from steelsojka/angular-lsMatthieu Coudron2020-11-141-1/+1
|\ | | | | feat(angular-ls): add angular language service
| * feat(angular-ls): add angular language serviceSteven Sojka2020-08-311-1/+1
| |
* | doc #346Justin M. Keyes2020-09-051-24/+28
|/
* Add example for how to get path to log file to READMEDheepak Krishnamurthy2020-07-191-0/+6
|
* Update README.md to make lua block clearer to readDheepak Krishnamurthy2020-07-031-4/+17
|
* doc: spell out when :packadd is neededJustin M. Keyes2020-05-051-2/+2
| | | | https://github.com/neovim/nvim-lsp/issues/220
* docJustin M. Keyes2020-05-041-0/+2
|
* Fix small typo in README.mdThomas Versteeg2020-04-091-1/+1
|
* README_template.md: add how to override default_configHirokazu Hata2020-03-101-0/+13
|
* [fix] e.gkazukazuinaina2020-03-051-1/+1
|
* [add] vim-plug url in README_templetekazukazuinaina2020-03-041-0/+2
|
* window/showMessage: the display level can be set for 'window/showMessage' ↵Hirokazu Hata2020-02-241-3/+7
| | | | | | notification related with #127
* docgen.lua: require() all configsJustin M. Keyes2020-02-021-3/+3
| | | | | Since 6d380677502d, configs are lazy-loaded. So docgen.lua needs to require() them explicitly.
* doc #108Justin M. Keyes2020-01-311-0/+5
| | | | - mention :packadd - more renames
* rename "skeleton" to "configs" #100Michael Lingelbach2020-01-311-2/+2
| | | | | | | | | | | | | | `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
* doc: Re - Emphasize dependency on Nvim HEAD/0.5 (#83)Hirokazu Hata2019-12-271-6/+7
|
* docJustin M. Keyes2019-12-081-2/+2
|
* remove Vimscript wrapper nvim_lsp#setup()Justin M. Keyes2019-12-081-84/+113
| | | | | | | | | | | | 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
* Update README_template.mdAshkan Kiani2019-11-261-7/+0
|
* Add workspace/didChangeConfiguration support. (#30)Ashkan Kiani2019-11-211-1/+5
| | | | - Add client.workspace_did_change_configuration() - Notify settings on init.
* Fix docs and add util.once (#31)Ashkan Kiani2019-11-171-1/+0
|
* Use a template for README.md (#28)Ashkan Kiani2019-11-171-0/+174